CE improved tokenizer
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m14s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m14s
This commit is contained in:
@@ -31,4 +31,30 @@ int strcmp (const char* s1, const char* s2);
|
||||
/* concatinate strings */
|
||||
char* strcat (char* dest, const char* src);
|
||||
|
||||
int isalnum (int c);
|
||||
|
||||
int isalpha (int c);
|
||||
|
||||
int iscntrl (int c);
|
||||
|
||||
int isdigit (int c);
|
||||
|
||||
int isgraph (int c);
|
||||
|
||||
int islower (int c);
|
||||
|
||||
int isprint (int c);
|
||||
|
||||
int ispunct (int c);
|
||||
|
||||
int isspace (int c);
|
||||
|
||||
int isupper (int c);
|
||||
|
||||
int isxdigit (int c);
|
||||
|
||||
int isascii (int c);
|
||||
|
||||
int isblank (int c);
|
||||
|
||||
#endif // _LIBSTRING_STRING_H
|
||||
|
||||
Reference in New Issue
Block a user