mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-04-03 22:29:19 +00:00
Added SDL_unsetenv()
This commit is contained in:
@@ -1038,6 +1038,7 @@ SDL3_0.0.0 {
|
||||
SDL_uitoa;
|
||||
SDL_ulltoa;
|
||||
SDL_ultoa;
|
||||
SDL_unsetenv;
|
||||
SDL_utf8strlcpy;
|
||||
SDL_utf8strlen;
|
||||
SDL_utf8strnlen;
|
||||
|
||||
@@ -1063,6 +1063,7 @@
|
||||
#define SDL_uitoa SDL_uitoa_REAL
|
||||
#define SDL_ulltoa SDL_ulltoa_REAL
|
||||
#define SDL_ultoa SDL_ultoa_REAL
|
||||
#define SDL_unsetenv SDL_unsetenv_REAL
|
||||
#define SDL_utf8strlcpy SDL_utf8strlcpy_REAL
|
||||
#define SDL_utf8strlen SDL_utf8strlen_REAL
|
||||
#define SDL_utf8strnlen SDL_utf8strnlen_REAL
|
||||
|
||||
@@ -1069,6 +1069,7 @@ SDL_DYNAPI_PROC(float,SDL_truncf,(float a),(a),return)
|
||||
SDL_DYNAPI_PROC(char*,SDL_uitoa,(unsigned int a, char *b, int c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(char*,SDL_ulltoa,(Uint64 a, char *b, int c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(char*,SDL_ultoa,(unsigned long a, char *b, int c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_unsetenv,(const char *a),(a),return)
|
||||
SDL_DYNAPI_PROC(size_t,SDL_utf8strlcpy,(SDL_OUT_Z_CAP(c) char *a, const char *b, size_t c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(size_t,SDL_utf8strlen,(const char *a),(a),return)
|
||||
SDL_DYNAPI_PROC(size_t,SDL_utf8strnlen,(const char *a, size_t b),(a,b),return)
|
||||
|
||||
Reference in New Issue
Block a user