| SDL_wcstol(3) | SDL3 FUNCTIONS | SDL_wcstol(3) |
SDL_wcstol - Parse a long from a wide string.
Defined in SDL3/SDL_stdinc.h
#include "SDL3/SDL.h"
long SDL_wcstol(const wchar_t *str, wchar_t **endp, int base);
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 , the result is clamped to the minimum and maximum representable long values.
Returns the parsed long , or 0 if no number could be parsed.
It is safe to call this function from any thread.
This function is available since SDL 3.2.0.
•(3), SDL_strtol(3)
| SDL 3.2.10 | Simple Directmedia Layer |