mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-13 18:05:47 +00:00
Hide SDL_wcstoll and SDL_wcstoull for compilers not supporting long long (#15808)
Co-authored-by: Sam Lantinga <slouken@libsdl.org>
This commit is contained in:
parent
72771ac0b4
commit
f70ea37517
1 changed files with 3 additions and 0 deletions
|
|
@ -3081,6 +3081,7 @@ extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp,
|
|||
*/
|
||||
extern SDL_DECLSPEC unsigned long SDLCALL SDL_wcstoul(const wchar_t *str, wchar_t **endp, int base);
|
||||
|
||||
#ifndef SDL_NOLONGLONG
|
||||
/**
|
||||
* Parse a `long long` from a wide string.
|
||||
*
|
||||
|
|
@ -3137,6 +3138,8 @@ extern SDL_DECLSPEC long long SDLCALL SDL_wcstoll(const wchar_t *str, wchar_t **
|
|||
*/
|
||||
extern SDL_DECLSPEC unsigned long long SDLCALL SDL_wcstoull(const wchar_t *str, wchar_t **endp, int base);
|
||||
|
||||
#endif /* !SDL_NOLONGLONG */
|
||||
|
||||
/**
|
||||
* This works exactly like strlen() but doesn't require access to a C runtime.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue