SDL: Sync SDL3 wiki -> header (572cc)

From 572cc7af634ba713b5523ff25cca71307f7b6c65 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Sat, 16 Nov 2024 04:44:23 +0000
Subject: [PATCH] Sync SDL3 wiki -> header

[ci skip]
---
 include/SDL3/SDL_stdinc.h | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h
index b090302db3f5e..8793f0d2d6cdc 100644
--- a/include/SDL3/SDL_stdinc.h
+++ b/include/SDL3/SDL_stdinc.h
@@ -2018,16 +2018,18 @@ extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp,
 extern SDL_DECLSPEC size_t SDLCALL SDL_strlen(const char *str);
 
 /**
- * This works exactly like strnlen() but doesn't require access to a C runtime.
+ * This works exactly like strnlen() but doesn't require access to a C
+ * runtime.
  *
- * Counts up to a maximum of `maxlen` bytes in `str`, excluding the null terminator.
+ * Counts up to a maximum of `maxlen` bytes in `str`, excluding the null
+ * terminator.
  *
  * If you need the length of a UTF-8 string, consider using SDL_utf8strnlen().
  *
  * \param str The null-terminated string to read. Must not be NULL.
  * \param maxlen The maximum amount of bytes to count.
- * \returns The length (in bytes, excluding the null terminator) of `src`
- *          but never more than `maxlen`.
+ * \returns The length (in bytes, excluding the null terminator) of `src` but
+ *          never more than `maxlen`.
  *
  * \threadsafety It is safe to call this function from any thread.
  *