From c91c5c7d85de0e46de1cbc8f76b7c3809e5284f1 Mon Sep 17 00:00:00 2001 From: SDL Wiki Bot Date: Mon, 8 Jun 2026 16:02:29 +0000 Subject: [PATCH] Sync SDL3 wiki -> header [ci skip] --- include/SDL3/SDL_stdinc.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h index c3bcada730..5da0383a6f 100644 --- a/include/SDL3/SDL_stdinc.h +++ b/include/SDL3/SDL_stdinc.h @@ -3060,8 +3060,8 @@ extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp, * If `str` starts with whitespace, then those whitespace characters are * skipped before attempting to parse the number. * - * If the parsed number does not fit inside an `unsigned long`, the result is clamped to - * the minimum and maximum representable `unsigned long` values. + * If the parsed number does not fit inside an `unsigned long`, the result is + * clamped to the minimum and maximum representable `unsigned long` values. * * \param str The null-terminated wide string to read. Must not be NULL. * \param endp If not NULL, the address of the first invalid wide character @@ -3087,8 +3087,8 @@ extern SDL_DECLSPEC unsigned long SDLCALL SDL_wcstoul(const wchar_t *str, wchar_ * If `str` starts with whitespace, then those whitespace characters are * skipped before attempting to parse the number. * - * If the parsed number does not fit inside a `long long`, the result is clamped to - * the minimum and maximum representable `long long` values. + * If the parsed number does not fit inside a `long long`, the result is + * clamped to the minimum and maximum representable `long long` values. * * \param str The null-terminated wide string to read. Must not be NULL. * \param endp If not NULL, the address of the first invalid wide character @@ -3114,8 +3114,9 @@ extern SDL_DECLSPEC long long SDLCALL SDL_wcstoll(const wchar_t *str, wchar_t ** * If `str` starts with whitespace, then those whitespace characters are * skipped before attempting to parse the number. * - * If the parsed number does not fit inside an `unsigned long long`, the result is clamped to - * the minimum and maximum representable `unsigned long long` values. + * If the parsed number does not fit inside an `unsigned long long`, the + * result is clamped to the minimum and maximum representable `unsigned long + * long` values. * * \param str The null-terminated wide string to read. Must not be NULL. * \param endp If not NULL, the address of the first invalid wide character @@ -3125,7 +3126,8 @@ extern SDL_DECLSPEC long long SDLCALL SDL_wcstoll(const wchar_t *str, wchar_t ** * to 36 inclusive. If 0, the base will be inferred from the * number's prefix (0x for hexadecimal, 0 for octal, decimal * otherwise). - * \returns the parsed `unsigned long long`, or 0 if no number could be parsed. + * \returns the parsed `unsigned long long`, or 0 if no number could be + * parsed. * * \threadsafety It is safe to call this function from any thread. *