CE improved tokenizer
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m14s

This commit is contained in:
2026-03-01 13:42:04 +01:00
parent a5d5e7d6a4
commit e61545c4cf
3 changed files with 120 additions and 41 deletions

View File

@@ -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