aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_str.c')
-rw-r--r--src/microhttpd/mhd_str.c6
1 files changed, 0 insertions, 6 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