ugh
This commit is contained in:
parent
b35e5dbd55
commit
389a593f9e
|
@ -110,4 +110,10 @@ native isalpha(ch);
|
|||
native isspace(ch);
|
||||
|
||||
/* Returns true when value is letter or digit. */
|
||||
native isalnum(ch);
|
||||
native isalnum(ch);
|
||||
|
||||
/* Concatenates a string. Maxlength is the total buffer of the destination. */
|
||||
native strcat(dest[], const source[], maxlength);
|
||||
|
||||
/* Finds a string in another string. Returns -1 if not found. */
|
||||
native strfind(const string[], const sub[], bool:ignorecase=false, pos=0);
|
||||
|
|
Loading…
Reference in New Issue
Block a user