SDL_ttf: Sync SDL3_ttf wiki -> header (ecf00)

From ecf0069127225a8570ae721a5e0b096e46c16c14 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Sun, 20 Oct 2024 12:35:27 +0000
Subject: [PATCH] Sync SDL3_ttf wiki -> header

[ci skip]
---
 include/SDL3_ttf/SDL_ttf.h | 35 ++++++++++++++++++++++++-----------
 1 file changed, 24 insertions(+), 11 deletions(-)

diff --git a/include/SDL3_ttf/SDL_ttf.h b/include/SDL3_ttf/SDL_ttf.h
index 3dcce873..3671fd08 100644
--- a/include/SDL3_ttf/SDL_ttf.h
+++ b/include/SDL3_ttf/SDL_ttf.h
@@ -1654,10 +1654,14 @@ extern SDL_DECLSPEC bool SDLCALL TTF_SetTextColorFloat(TTF_Text *text, float r,
  * Get the color of a text object.
  *
  * \param text the TTF_Text to query.
- * \param r a pointer filled in with the red color value in the range of 0-255, may be NULL.
- * \param g a pointer filled in with the green color value in the range of 0-255, may be NULL.
- * \param b a pointer filled in with the blue color value in the range of 0-255, may be NULL.
- * \param a a pointer filled in with the alpha value in the range of 0-255, may be NULL.
+ * \param r a pointer filled in with the red color value in the range of
+ *          0-255, may be NULL.
+ * \param g a pointer filled in with the green color value in the range of
+ *          0-255, may be NULL.
+ * \param b a pointer filled in with the blue color value in the range of
+ *          0-255, may be NULL.
+ * \param a a pointer filled in with the alpha value in the range of 0-255,
+ *          may be NULL.
  * \returns true on success or false on failure; call SDL_GetError() for more
  *          information.
  *
@@ -1675,10 +1679,14 @@ extern SDL_DECLSPEC bool SDLCALL TTF_GetTextColor(TTF_Text *text, Uint8 *r, Uint
  * Get the color of a text object.
  *
  * \param text the TTF_Text to query.
- * \param r a pointer filled in with the red color value, normally in the range of 0-1, may be NULL.
- * \param g a pointer filled in with the green color value, normally in the range of 0-1, may be NULL.
- * \param b a pointer filled in with the blue color value, normally in the range of 0-1, may be NULL.
- * \param a a pointer filled in with the alpha value in the range of 0-1, may be NULL.
+ * \param r a pointer filled in with the red color value, normally in the
+ *          range of 0-1, may be NULL.
+ * \param g a pointer filled in with the green color value, normally in the
+ *          range of 0-1, may be NULL.
+ * \param b a pointer filled in with the blue color value, normally in the
+ *          range of 0-1, may be NULL.
+ * \param a a pointer filled in with the alpha value in the range of 0-1, may
+ *          be NULL.
  * \returns true on success or false on failure; call SDL_GetError() for more
  *          information.
  *
@@ -1859,10 +1867,14 @@ extern SDL_DECLSPEC bool SDLCALL TTF_GetTextWrapping(TTF_Text *text, int *wrapLe
 /**
  * Set whether whitespace should be visible when wrapping a text object.
  *
- * If the whitespace is visible, it will take up space for purposes of alignment and wrapping. This is good for editing, but looks better when centered or aligned if whitespace around line wrapping is hidden. This defaults false.
+ * If the whitespace is visible, it will take up space for purposes of
+ * alignment and wrapping. This is good for editing, but looks better when
+ * centered or aligned if whitespace around line wrapping is hidden. This
+ * defaults false.
  *
  * \param text the TTF_Text to modify.
- * \param visible true to show whitespace when wrapping text, false to hide it.
+ * \param visible true to show whitespace when wrapping text, false to hide
+ *                it.
  * \returns true on success or false on failure; call SDL_GetError() for more
  *          information.
  *
@@ -1879,7 +1891,8 @@ extern SDL_DECLSPEC bool SDLCALL TTF_SetTextWrapWhitespaceVisible(TTF_Text *text
  * Return whether whitespace is shown when wrapping a text object.
  *
  * \param text the TTF_Text to query.
- * \returns true if whitespace is shown when wrapping text, or false otherwise.
+ * \returns true if whitespace is shown when wrapping text, or false
+ *          otherwise.
  *
  * \threadsafety This function should be called on the thread that created the
  *               text.