mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 22:35:37 +03:00
ugh
This commit is contained in:
parent
b35e5dbd55
commit
389a593f9e
@ -111,3 +111,9 @@ native isspace(ch);
|
|||||||
|
|
||||||
/* Returns true when value is letter or digit. */
|
/* 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