added ucfirst()

This commit is contained in:
Felix Geyer 2004-08-01 16:49:24 +00:00
parent 65a5e34d38
commit 2ca6e3382e

View File

@ -85,6 +85,9 @@ native strtolower(string[]);
/* Converts all chars in string to upper case. */ /* Converts all chars in string to upper case. */
native strtoupper(string[]); native strtoupper(string[]);
/* Make a string's first character uppercase */
native ucfirst(string[]);
/* Returns true when value is digit. */ /* Returns true when value is digit. */
native isdigit(ch); native isdigit(ch);