aboutsummaryrefslogtreecommitdiff
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)
downloadlibmicrohttpd-ca51b3506847042eaf62fa1e21219ca3df44e475.tar.gz
libmicrohttpd-ca51b3506847042eaf62fa1e21219ca3df44e475.zip
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)
405 * @param str string to convert 405 * @param str string to convert
406 * @param maxlen maximum number of characters to process 406 * @param maxlen maximum number of characters to process
407 * @param out_val pointer to size_t to store result of conversion 407 * @param out_val pointer to size_t to store result of conversion
408 * @param next_char pointer to store pointer to character next to last
409 * converted digit, ignored if NULL
410 * @return non-zero number of characters processed on succeed, 408 * @return non-zero number of characters processed on succeed,
411 * zero if no digit is found, resulting value is larger 409 * zero if no digit is found, resulting value is larger
412 * then possible to store in size_t or @a out_val is NULL 410 * 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)
487 * @param str string to convert 485 * @param str string to convert
488 * @param maxlen maximum number of characters to process 486 * @param maxlen maximum number of characters to process
489 * @param out_val pointer to uint32_t to store result of conversion 487 * @param out_val pointer to uint32_t to store result of conversion
490 * @param next_char pointer to store pointer to character next to last
491 * converted digit, ignored if NULL
492 * @return non-zero number of characters processed on succeed, 488 * @return non-zero number of characters processed on succeed,
493 * zero if no digit is found, resulting value is larger 489 * zero if no digit is found, resulting value is larger
494 * then possible to store in uint32_t or @a out_val is NULL 490 * 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)
569 * @param str string to convert 565 * @param str string to convert
570 * @param maxlen maximum number of characters to process 566 * @param maxlen maximum number of characters to process
571 * @param out_val pointer to uint64_t to store result of conversion 567 * @param out_val pointer to uint64_t to store result of conversion
572 * @param next_char pointer to store pointer to character next to last
573 * converted digit, ignored if NULL
574 * @return non-zero number of characters processed on succeed, 568 * @return non-zero number of characters processed on succeed,
575 * zero if no digit is found, resulting value is larger 569 * zero if no digit is found, resulting value is larger
576 * then possible to store in uint64_t or @a out_val is NULL 570 * 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,
113 * @param str string to convert 113 * @param str string to convert
114 * @param maxlen maximum number of characters to process 114 * @param maxlen maximum number of characters to process
115 * @param out_val pointer to size_t to store result of conversion 115 * @param out_val pointer to size_t to store result of conversion
116 * @param next_char pointer to store pointer to character next to last
117 * converted digit, ignored if NULL
118 * @return non-zero number of characters processed on succeed, 116 * @return non-zero number of characters processed on succeed,
119 * zero if no digit is found, resulting value is larger 117 * zero if no digit is found, resulting value is larger
120 * then possible to store in size_t or @a out_val is NULL 118 * then possible to store in size_t or @a out_val is NULL
@@ -147,8 +145,6 @@ MHD_strx_to_uint32_ (const char * str,
147 * @param str string to convert 145 * @param str string to convert
148 * @param maxlen maximum number of characters to process 146 * @param maxlen maximum number of characters to process
149 * @param out_val pointer to uint32_t to store result of conversion 147 * @param out_val pointer to uint32_t to store result of conversion
150 * @param next_char pointer to store pointer to character next to last
151 * converted digit, ignored if NULL
152 * @return non-zero number of characters processed on succeed, 148 * @return non-zero number of characters processed on succeed,
153 * zero if no digit is found, resulting value is larger 149 * zero if no digit is found, resulting value is larger
154 * then possible to store in uint32_t or @a out_val is NULL 150 * then possible to store in uint32_t or @a out_val is NULL
@@ -181,8 +177,6 @@ MHD_strx_to_uint64_ (const char * str,
181 * @param str string to convert 177 * @param str string to convert
182 * @param maxlen maximum number of characters to process 178 * @param maxlen maximum number of characters to process
183 * @param out_val pointer to uint64_t to store result of conversion 179 * @param out_val pointer to uint64_t to store result of conversion
184 * @param next_char pointer to store pointer to character next to last
185 * converted digit, ignored if NULL
186 * @return non-zero number of characters processed on succeed, 180 * @return non-zero number of characters processed on succeed,
187 * zero if no digit is found, resulting value is larger 181 * zero if no digit is found, resulting value is larger
188 * then possible to store in uint64_t or @a out_val is NULL 182 * then possible to store in uint64_t or @a out_val is NULL