diff --git a/plugins/include/string.inc b/plugins/include/string.inc index 886c7a34..8b32e756 100755 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -85,6 +85,9 @@ native strtolower(string[]); /* Converts all chars in string to upper case. */ native strtoupper(string[]); +/* Make a string's first character uppercase */ +native ucfirst(string[]); + /* Returns true when value is digit. */ native isdigit(ch);