diff options
Diffstat (limited to 'scan_urlencoded_query.h')
-rw-r--r-- | scan_urlencoded_query.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scan_urlencoded_query.h b/scan_urlencoded_query.h index 4fa35c4..f0ad781 100644 --- a/scan_urlencoded_query.h +++ b/scan_urlencoded_query.h | |||
@@ -11,7 +11,8 @@ typedef enum { | |||
11 | SCAN_SEARCHPATH_TERMINATOR = 8 | 11 | SCAN_SEARCHPATH_TERMINATOR = 8 |
12 | } SCAN_SEARCHPATH_FLAG; | 12 | } SCAN_SEARCHPATH_FLAG; |
13 | 13 | ||
14 | /* string pointer to source, pointer to next scan position on return | 14 | /* string in: pointer to source |
15 | out: pointer to next scan position | ||
15 | deststring pointer to destination | 16 | deststring pointer to destination |
16 | flags determines, what to parse | 17 | flags determines, what to parse |
17 | returns number of valid converted characters in deststring | 18 | returns number of valid converted characters in deststring |
@@ -19,7 +20,8 @@ typedef enum { | |||
19 | */ | 20 | */ |
20 | ssize_t scan_urlencoded_query(char **string, char *deststring, SCAN_SEARCHPATH_FLAG flags); | 21 | ssize_t scan_urlencoded_query(char **string, char *deststring, SCAN_SEARCHPATH_FLAG flags); |
21 | 22 | ||
22 | /* string pointer to source, pointer to next scan position on return | 23 | /* string in: pointer to value of a param=value pair to skip |
24 | out: pointer to next scan position on return | ||
23 | */ | 25 | */ |
24 | void scan_urlencoded_skipvalue( char **string ); | 26 | void scan_urlencoded_skipvalue( char **string ); |
25 | 27 | ||