From b43f1688d95faf3b9bdc8a883d19215e597fce77 Mon Sep 17 00:00:00 2001 From: SDL Wiki Bot Date: Thu, 4 Jul 2024 15:12:07 +0000 Subject: [PATCH] Sync SDL3 wiki -> header --- include/SDL3/SDL_stdinc.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h index 482ae8cf59..450a629e71 100644 --- a/include/SDL3/SDL_stdinc.h +++ b/include/SDL3/SDL_stdinc.h @@ -1321,14 +1321,15 @@ extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepUTF8(const char **pstr, size_t *pslen * either case, plan to have a buffer of _more_ than 4 bytes!). * * If `codepoint` is an invalid value (outside the Unicode range, or a UTF-16 - * surrogate value, etc), this will use U+FFFD (REPLACEMENT CHARACTER) for - * the codepoint instead, and not set an error. + * surrogate value, etc), this will use U+FFFD (REPLACEMENT CHARACTER) for the + * codepoint instead, and not set an error. * * If `dst` is NULL, this returns NULL immediately without writing to the * pointer and without setting an error. * * \param codepoint a Unicode codepoint to convert to UTF-8. - * \param dst the location to write the encoded UTF-8. Must point to at least 4 bytes! + * \param dst the location to write the encoded UTF-8. Must point to at least + * 4 bytes! * \returns the first byte past the newly-written UTF-8 sequence. * * \threadsafety It is safe to call this function from any thread.