From 2ca6e3382ea4edc0f1ea120dafa032ed8da5f001 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Sun, 1 Aug 2004 16:49:24 +0000 Subject: [PATCH] added ucfirst() --- plugins/include/string.inc | 3 +++ 1 file changed, 3 insertions(+) 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);