libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit 9d4e56cd1e940b3662f850a843b2e6f911f4eb41
parent c14dcae41f7e3bed395227c3c1c6fcbcc47ce9bf
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Thu, 25 Dec 2025 17:27:50 +0100

mhd_str.h: clarified internal API in doxy

Diffstat:
Msrc/mhd2/mhd_str.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/mhd2/mhd_str.h b/src/mhd2/mhd_str.h @@ -497,6 +497,7 @@ MHD_FN_PAR_NONNULL_ALL_ MHD_FN_PAR_IN_SIZE_ (1,2) MHD_FN_PAR_OUT_SIZE_ (3,4); /** * Convert uint_fast32_t value to hexdecimal US-ASCII string. + * Only lowest 32 bits are used in the input value. * @note: result is NOT zero-terminated. * @param val the value to convert * @param buf the buffer to result to @@ -514,6 +515,7 @@ MHD_FN_PAR_NONNULL_ALL_ MHD_FN_PAR_OUT_SIZE_ (2,3); #ifndef MHD_FAVOR_SMALL_CODE /** * Convert uint_least16_t value to decimal US-ASCII string. + * Only lowest 16 bits are used in the input value. * @note: result is NOT zero-terminated. * @param val the value to convert * @param buf the buffer to result to @@ -534,6 +536,7 @@ MHD_FN_PAR_NONNULL_ALL_ MHD_FN_PAR_OUT_SIZE_ (2,3); /** * Convert uint_fast64_t value to decimal US-ASCII string. + * Only lowest 64 bits are used in the input value. * @note: result is NOT zero-terminated. * @param val the value to convert * @param buf the buffer to result to