]> granicus.if.org Git - apache/commitdiff
a bit of doc for ap_args_to_table()
authorJeff Trawick <trawick@apache.org>
Mon, 14 Mar 2011 19:13:30 +0000 (19:13 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 14 Mar 2011 19:13:30 +0000 (19:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1081518 13f79535-47bb-0310-9956-ffa450edef68

include/util_script.h

index 924dd1425698019b462ff1df03f7ef391b414533..cae1156387764dca2995bc75ae71b1ad3b3f5b25 100644 (file)
@@ -140,6 +140,14 @@ AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
                                       int (*getsfunc) (char *, int, void *),
                                       void *getsfunc_data);
 
+/**
+ * Parse query args for the request and store in a new table allocated
+ * from the request pool.
+ * For args with no value, "1" will be used instead.
+ * If no query args were specified, the table will be entry.
+ * @param r The current request
+ * @param table A new table on output.
+ */
 AP_DECLARE(void) ap_args_to_table(request_rec *r, apr_table_t **table);
 
 #ifdef __cplusplus