summaryrefslogtreecommitdiff
path: root/include/SDL_stdinc.h
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2020-03-02 15:21:07 -0800
committerSam Lantinga <slouken@libsdl.org>2020-03-02 15:21:07 -0800
commit6b567be4e7b60c83d81b329666a09e1114495d15 (patch)
tree37357723df83e949ee2cebc76c2ceafe7442b258 /include/SDL_stdinc.h
parent36d9a08eb719c392c07712913acab31dfde6c388 (diff)
downloadsdl-6b567be4e7b60c83d81b329666a09e1114495d15.tar.gz
Fixed bug 5001 - Feature request: SDL_isupper & SDL_islower
Diffstat (limited to 'include/SDL_stdinc.h')
-rw-r--r--include/SDL_stdinc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h
index 59d7edb5d..d96e18bc2 100644
--- a/include/SDL_stdinc.h
+++ b/include/SDL_stdinc.h
@@ -408,6 +408,8 @@ extern DECLSPEC int SDLCALL SDL_abs(int x);
extern DECLSPEC int SDLCALL SDL_isdigit(int x);
extern DECLSPEC int SDLCALL SDL_isspace(int x);
+extern DECLSPEC int SDLCALL SDL_isupper(int x);
+extern DECLSPEC int SDLCALL SDL_islower(int x);
extern DECLSPEC int SDLCALL SDL_toupper(int x);
extern DECLSPEC int SDLCALL SDL_tolower(int x);