summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-04-19 19:57:54 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-04-19 19:57:54 +0000
commitca51b3506847042eaf62fa1e21219ca3df44e475 (patch)
treec0d9e99cd55ac01bbe9c00aecbfd11c60d81090e
parentc0a00bbf941e72a5e904a150d556cc73ccd60a0c (diff)
mhd_str.c: fixed comments
-rw-r--r--src/microhttpd/mhd_str.c6
-rw-r--r--src/microhttpd/mhd_str.h6
2 files changed, 0 insertions, 12 deletions
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c
index be8249fb..7d6b16d4 100644
--- a/src/microhttpd/mhd_str.c
+++ b/src/microhttpd/mhd_str.c
@@ -405,8 +405,6 @@ MHD_strx_to_sizet_ (const char * str, size_t * out_val)
* @param str string to convert
* @param maxlen maximum number of characters to process
* @param out_val pointer to size_t to store result of conversion
- * @param next_char pointer to store pointer to character next to last
- * converted digit, ignored if NULL
* @return non-zero number of characters processed on succeed,
* zero if no digit is found, resulting value is larger
* then possible to store in size_t or @a out_val is NULL
@@ -487,8 +485,6 @@ MHD_strx_to_uint32_ (const char * str, uint32_t * out_val)
* @param str string to convert
* @param maxlen maximum number of characters to process
* @param out_val pointer to uint32_t to store result of conversion
- * @param next_char pointer to store pointer to character next to last
- * converted digit, ignored if NULL
* @return non-zero number of characters processed on succeed,
* zero if no digit is found, resulting value is larger
* then possible to store in uint32_t or @a out_val is NULL
@@ -569,8 +565,6 @@ MHD_strx_to_uint64_ (const char * str, uint64_t * out_val)
* @param str string to convert
* @param maxlen maximum number of characters to process
* @param out_val pointer to uint64_t to store result of conversion
- * @param next_char pointer to store pointer to character next to last
- * converted digit, ignored if NULL
* @return non-zero number of characters processed on succeed,
* zero if no digit is found, resulting value is larger
* then possible to store in uint64_t or @a out_val is NULL
diff --git a/src/microhttpd/mhd_str.h b/src/microhttpd/mhd_str.h
index 2572c050..c0649a2f 100644
--- a/src/microhttpd/mhd_str.h
+++ b/src/microhttpd/mhd_str.h
@@ -113,8 +113,6 @@ MHD_strx_to_sizet_ (const char * str,
* @param str string to convert
* @param maxlen maximum number of characters to process
* @param out_val pointer to size_t to store result of conversion
- * @param next_char pointer to store pointer to character next to last
- * converted digit, ignored if NULL
* @return non-zero number of characters processed on succeed,
* zero if no digit is found, resulting value is larger
* then possible to store in size_t or @a out_val is NULL
@@ -147,8 +145,6 @@ MHD_strx_to_uint32_ (const char * str,
* @param str string to convert
* @param maxlen maximum number of characters to process
* @param out_val pointer to uint32_t to store result of conversion
- * @param next_char pointer to store pointer to character next to last
- * converted digit, ignored if NULL
* @return non-zero number of characters processed on succeed,
* zero if no digit is found, resulting value is larger
* then possible to store in uint32_t or @a out_val is NULL
@@ -181,8 +177,6 @@ MHD_strx_to_uint64_ (const char * str,
* @param str string to convert
* @param maxlen maximum number of characters to process
* @param out_val pointer to uint64_t to store result of conversion
- * @param next_char pointer to store pointer to character next to last
- * converted digit, ignored if NULL
* @return non-zero number of characters processed on succeed,
* zero if no digit is found, resulting value is larger
* then possible to store in uint64_t or @a out_val is NULL