aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_str.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_str.h')
-rw-r--r--src/microhttpd/mhd_str.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/microhttpd/mhd_str.h b/src/microhttpd/mhd_str.h
index 880970ca..0ee41717 100644
--- a/src/microhttpd/mhd_str.h
+++ b/src/microhttpd/mhd_str.h
@@ -106,38 +106,6 @@ MHD_str_to_uint64_n_ (const char * str,
106 106
107 107
108/** 108/**
109 * Convert hexadecimal US-ASCII digits in string to number in size_t.
110 * Conversion stopped at first non-digit character.
111 * @param str string to convert
112 * @param out_val pointer to size_t to store result of conversion
113 * @return non-zero number of characters processed on succeed,
114 * zero if no digit is found, resulting value is larger
115 * then possible to store in size_t or @a out_val is NULL
116 */
117size_t
118MHD_strx_to_sizet_ (const char * str,
119 size_t * out_val);
120
121
122/**
123 * Convert not more then @a maxlen hexadecimal US-ASCII digits in string
124 * to number in size_t.
125 * Conversion stopped at first non-digit character or after @a maxlen
126 * digits.
127 * @param str string to convert
128 * @param maxlen maximum number of characters to process
129 * @param out_val pointer to size_t to store result of conversion
130 * @return non-zero number of characters processed on succeed,
131 * zero if no digit is found, resulting value is larger
132 * then possible to store in size_t or @a out_val is NULL
133 */
134size_t
135MHD_strx_to_sizet_n_ (const char * str,
136 size_t maxlen,
137 size_t * out_val);
138
139
140/**
141 * Convert hexadecimal US-ASCII digits in string to number in uint32_t. 109 * Convert hexadecimal US-ASCII digits in string to number in uint32_t.
142 * Conversion stopped at first non-digit character. 110 * Conversion stopped at first non-digit character.
143 * @param str string to convert 111 * @param str string to convert