added trim()

This commit is contained in:
Felix Geyer 2004-07-24 01:52:45 +00:00
parent b70eac0461
commit 3a904ed05c

View File

@ -76,6 +76,9 @@ native parse(const text[], ... );
any number of arguments */ any number of arguments */
native strbreak(const text[], Left[], leftLen, Right[], rightLen); native strbreak(const text[], Left[], leftLen, Right[], rightLen);
/* Strips spaces from the beginning and end of a string. */
native trim(text[]);
/* Converts all chars in string to lower case. */ /* Converts all chars in string to lower case. */
native strtolower(string[]); native strtolower(string[]);