started working on ini parser
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
#include "string.h"
|
||||
#include "stdio.h"
|
||||
#include "stdlib.h"
|
||||
#include "ctype.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// string.h
|
||||
@@ -106,4 +107,24 @@
|
||||
#define V_atoi atoi
|
||||
#define V_atof atof
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// ctype.h
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#define V_isalnum isalnum
|
||||
#define V_isalpha isalpha
|
||||
#define V_isblank isblank
|
||||
#define V_iscntrl iscntrl
|
||||
#define V_isdigit isdigit
|
||||
#define V_isgraph isgraph
|
||||
#define V_islower islower
|
||||
#define V_isprint isprint
|
||||
#define V_ispunct ispunct
|
||||
#define V_isspace isspace
|
||||
#define V_isupper isupper
|
||||
#define V_isxdigit isxdigit
|
||||
#define V_tolower tolower
|
||||
#define V_toupper toupper
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user