libmicrohttpd2

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

commit 35d16d0b5da3ca7befd801c677297d5b029ecd7b
parent 11942cb8683096ed7df5b5a060d21bcf35a877d4
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Fri,  5 Sep 2025 17:33:08 +0200

Fixed formatting and non US-ASCII sybmols

Diffstat:
Msrc/mhd2/mhd_daemon.h | 6+++---
Msrc/mhd2/mhd_mono_clock.c | 3++-
Msrc/mhd2/response_funcs.c | 2+-
3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/mhd2/mhd_daemon.h b/src/mhd2/mhd_daemon.h @@ -612,7 +612,7 @@ struct mhd_DaemonNetworkSettings /** * The daemon network/sockets data * - * This structure holds mostly static information—typically initialised once + * This structure holds mostly static information -- typically initialised once * when the daemon starts, and possibly updated once later (e.g., if the * listening socket fails or is closed). * @@ -1172,8 +1172,8 @@ struct MHD_Daemon /** * The daemon network/sockets data * - * This structure holds mostly static information—typically initialised once - * when the daemon starts, and possibly updated once later (e.g., if the + * This structure holds mostly static information -- typically initialised + * once when the daemon starts, and possibly updated once later (e.g., if the * listening socket fails or is closed). * * It does NOT contain any operational states. diff --git a/src/mhd2/mhd_mono_clock.c b/src/mhd2/mhd_mono_clock.c @@ -212,7 +212,8 @@ mclock_deinit_clock_get_time (void) * @param a the first value * @param b the second value * @return the greatest common divisor, - * if either of the input values ​​is zero, the other input value returned + * if either of the input values is zero, the other input value + * returned */ MHD_static_inline_ uint_fast32_t mclock_gcd (uint_fast32_t a, uint_fast32_t b) diff --git a/src/mhd2/response_funcs.c b/src/mhd2/response_funcs.c @@ -37,7 +37,7 @@ */ /** - * @file src/mhd2/response_funcs.с + * @file src/mhd2/response_funcs.c * @brief The definition of the internal response helper functions * @author Karlson2k (Evgeny Grin) */