| SDL_strtoul(3) | SDL3 FUNCTIONS | SDL_strtoul(3) |
SDL_strtoul - Parse an unsignedlong from a string.
Defined in SDL3/SDL_stdinc.h
#include "SDL3/SDL.h"
unsigned long SDL_strtoul(const char *str, char **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 an unsignedlong , the result is clamped to the maximum representable unsignedlong value.
Returns the parsed unsignedlong , 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_atoi(3), •(3), SDL_atof(3), •(3), SDL_strtol(3), •(3), SDL_strtoll(3), •(3), SDL_strtoull(3), •(3), SDL_strtod(3), •(3), SDL_ultoa(3)
| SDL 3.2.10 | Simple Directmedia Layer |