table of contents
- testing 3.2.4+ds-2
- unstable 3.2.4+ds-2
- experimental 3.2.4+git20250228+ds-1
SDL_swprintf(3) | SDL3 FUNCTIONS | SDL_swprintf(3) |
NAME¶
SDL_swprintf - This works exactly like swprintf() but doesn't require access to a C runtime.
HEADER FILE¶
Defined in SDL3/SDL_stdinc.h
SYNOPSIS¶
#include "SDL3/SDL.h"
int SDL_swprintf(wchar_t *text, size_t maxlen, const wchar_t *fmt, ...);
DESCRIPTION¶
Format a wide string of up to maxlen -1 wchar_t values, converting each
While some C runtimes differ on how to deal with too-large strings, this function null-terminates the output, by treating the null-terminator as part of the maxlen count. Note that if maxlen is zero, however, no wide characters will be written at all.
This function returns the number of _wide characters_ (not _codepoints_) that should be written, excluding the null-terminator character. If this returns a number >= maxlen , it means the output string was truncated. A negative return value means an error occurred.
Referencing the output string's pointer with a format item is undefined behavior.
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns the number of wide characters that should be written, not counting the null-terminator char, or a negative value on error.
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SDL 3.2.5 | Simple Directmedia Layer |