sdlWcstol function

int sdlWcstol(
  1. Pointer<Int16> str,
  2. Pointer<Pointer<Int16>> endp,
  3. int base
)

Parse a long from a wide string.

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.

\param str The null-terminated wide string to read. Must not be NULL. \param endp If not NULL, the address of the first invalid wide character (i.e. the next character after the parsed number) will be written to this pointer. \param base The base of the integer to read. Supported values are 0 and 2 to 36 inclusive. If 0, the base will be inferred from the number's prefix (0x for hexadecimal, 0 for octal, decimal otherwise). \returns The parsed long, or 0 if no number could be parsed.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL 3.1.3.

\sa SDL_strtol

extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp, int base)

Implementation

int sdlWcstol(Pointer<Int16> str, Pointer<Pointer<Int16>> endp, int base) {
  final sdlWcstolLookupFunction = libSdl3.lookupFunction<
      Int32 Function(
          Pointer<Int16> str, Pointer<Pointer<Int16>> endp, Int32 base),
      int Function(Pointer<Int16> str, Pointer<Pointer<Int16>> endp,
          int base)>('SDL_wcstol');
  return sdlWcstolLookupFunction(str, endp, base);
}