Added SDL_isinf(), SDL_isinff(), SDL_isnan(), and SDL_isnanf()
This commit is contained in:
@@ -930,7 +930,11 @@ SDL3_0.0.0 {
|
||||
SDL_iscntrl;
|
||||
SDL_isdigit;
|
||||
SDL_isgraph;
|
||||
SDL_isinf;
|
||||
SDL_isinff;
|
||||
SDL_islower;
|
||||
SDL_isnan;
|
||||
SDL_isnanf;
|
||||
SDL_isprint;
|
||||
SDL_ispunct;
|
||||
SDL_isspace;
|
||||
|
||||
@@ -955,7 +955,11 @@
|
||||
#define SDL_iscntrl SDL_iscntrl_REAL
|
||||
#define SDL_isdigit SDL_isdigit_REAL
|
||||
#define SDL_isgraph SDL_isgraph_REAL
|
||||
#define SDL_isinf SDL_isinf_REAL
|
||||
#define SDL_isinff SDL_isinff_REAL
|
||||
#define SDL_islower SDL_islower_REAL
|
||||
#define SDL_isnan SDL_isnan_REAL
|
||||
#define SDL_isnanf SDL_isnanf_REAL
|
||||
#define SDL_isprint SDL_isprint_REAL
|
||||
#define SDL_ispunct SDL_ispunct_REAL
|
||||
#define SDL_isspace SDL_isspace_REAL
|
||||
|
||||
@@ -964,7 +964,11 @@ SDL_DYNAPI_PROC(int,SDL_isblank,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_iscntrl,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isdigit,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isgraph,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isinf,(double a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isinff,(float a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_islower,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isnan,(double a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isnanf,(float a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isprint,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_ispunct,(int a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_isspace,(int a),(a),return)
|
||||
|
||||
Reference in New Issue
Block a user