diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2021-12-30 12:39:50 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2021-12-30 12:39:50 +0300 |
commit | b1b3301ac3ea2e1207832e8fe7a159f2ad06b38c (patch) | |
tree | 1816d0f494ae09279934adbf41a6e99a55f83f81 | |
parent | 11fcf260575a1ed738204665c9f04983943b1416 (diff) | |
download | libmicrohttpd-b1b3301ac3ea2e1207832e8fe7a159f2ad06b38c.tar.gz libmicrohttpd-b1b3301ac3ea2e1207832e8fe7a159f2ad06b38c.zip |
Additional doxy corrections.
Fixes for 6d67eadb614da29ac4b143c68064bb7268e30060
-rw-r--r-- | src/microhttpd/mhd_str.c | 2 | ||||
-rw-r--r-- | src/microhttpd/mhd_str.h | 2 | ||||
-rw-r--r-- | src/microhttpd/mhd_threads.c | 2 | ||||
-rw-r--r-- | src/microhttpd/mhd_threads.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c index 7c7fcf1f..822feccc 100644 --- a/src/microhttpd/mhd_str.c +++ b/src/microhttpd/mhd_str.c | |||
@@ -1146,7 +1146,7 @@ MHD_strx_to_uint64_n_ (const char *str, | |||
1146 | * @param base the numeric base, 10 or 16 | 1146 | * @param base the numeric base, 10 or 16 |
1147 | * @return non-zero number of characters processed on succeed, | 1147 | * @return non-zero number of characters processed on succeed, |
1148 | * zero if no digit is found, resulting value is larger | 1148 | * zero if no digit is found, resulting value is larger |
1149 | * then @max_val, @val_size is not 16/32 or @a out_val is NULL | 1149 | * then @a max_val, @a val_size is not 4/8 or @a out_val is NULL |
1150 | */ | 1150 | */ |
1151 | size_t | 1151 | size_t |
1152 | MHD_str_to_uvalue_n_ (const char *str, | 1152 | MHD_str_to_uvalue_n_ (const char *str, |
diff --git a/src/microhttpd/mhd_str.h b/src/microhttpd/mhd_str.h index 2943cf27..09c63578 100644 --- a/src/microhttpd/mhd_str.h +++ b/src/microhttpd/mhd_str.h | |||
@@ -341,7 +341,7 @@ MHD_strx_to_uint64_n_ (const char *str, | |||
341 | * @param base the numeric base, 10 or 16 | 341 | * @param base the numeric base, 10 or 16 |
342 | * @return non-zero number of characters processed on succeed, | 342 | * @return non-zero number of characters processed on succeed, |
343 | * zero if no digit is found, resulting value is larger | 343 | * zero if no digit is found, resulting value is larger |
344 | * then @max_val, @val_size is not 16/32 or @a out_val is NULL | 344 | * then @a max_val, @a val_size is not 4/8 or @a out_val is NULL |
345 | */ | 345 | */ |
346 | size_t | 346 | size_t |
347 | MHD_str_to_uvalue_n_ (const char *str, | 347 | MHD_str_to_uvalue_n_ (const char *str, |
diff --git a/src/microhttpd/mhd_threads.c b/src/microhttpd/mhd_threads.c index 96182965..45a10f12 100644 --- a/src/microhttpd/mhd_threads.c +++ b/src/microhttpd/mhd_threads.c | |||
@@ -179,7 +179,7 @@ MHD_set_thread_name_ (const MHD_thread_ID_ thread_id, | |||
179 | * @param stack_size size of stack for new thread, 0 for default | 179 | * @param stack_size size of stack for new thread, 0 for default |
180 | * @param start_routine main function of thread | 180 | * @param start_routine main function of thread |
181 | * @param arg argument for start_routine | 181 | * @param arg argument for start_routine |
182 | * @return non-zero on success; zero otherwise | 182 | * @return non-zero on success; zero otherwise (with errno set) |
183 | */ | 183 | */ |
184 | int | 184 | int |
185 | MHD_create_thread_ (MHD_thread_handle_ID_ *thread, | 185 | MHD_create_thread_ (MHD_thread_handle_ID_ *thread, |
diff --git a/src/microhttpd/mhd_threads.h b/src/microhttpd/mhd_threads.h index 818cd5fa..0a504635 100644 --- a/src/microhttpd/mhd_threads.h +++ b/src/microhttpd/mhd_threads.h | |||
@@ -215,7 +215,7 @@ typedef MHD_THRD_RTRN_TYPE_ | |||
215 | * @param stack_size size of stack for new thread, 0 for default | 215 | * @param stack_size size of stack for new thread, 0 for default |
216 | * @param start_routine main function of thread | 216 | * @param start_routine main function of thread |
217 | * @param arg argument for start_routine | 217 | * @param arg argument for start_routine |
218 | * @return non-zero on success; zero otherwise | 218 | * @return non-zero on success; zero otherwise (with errno set) |
219 | */ | 219 | */ |
220 | int | 220 | int |
221 | MHD_create_thread_ (MHD_thread_handle_ID_ *thread, | 221 | MHD_create_thread_ (MHD_thread_handle_ID_ *thread, |