commenting

This commit is contained in:
fpeters 2004-08-11 14:36:04 +00:00
parent 2a3db44582
commit 244c53a6cf
1 changed files with 18 additions and 0 deletions

View File

@ -71,6 +71,15 @@ static void unquote(char *src, char *last, char *dest)
*dest = '\0';
}
/**
* urlencoded_to_strings
* @str: url encoded query string
*
* Description:
* Unquote and divide fields of a query string
*
* Returns: NULL-terminated array of pointers to individual fields
**/
char** urlencoded_to_strings(char *str)
{
int i, n=1;
@ -159,6 +168,15 @@ int set_profile_auto(LassoProfile *profile)
}
/**
* save_profile_dumps
* @profile
*
* Description:
* stores identity and session dumps of profile in the database
*
* Returns: 0 on success, 1 on failure
*/
int save_profile_dumps(LassoProfile *profile)
{
int rc;