didn't want to check this in per darin

This commit is contained in:
dougt%netscape.com 2003-03-15 02:31:17 +00:00
Родитель 4a2133fd7a
Коммит aa98f0a05f
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -127,6 +127,14 @@ public:
***
***/
/** Compute the string length of s
@param s the string in question
@return the length of s
*/
static PRUint32 strlen(const char* s) {
return PRUint32(::strlen(s));
}
/// Compare s1 and s2.
static PRInt32 strcmp(const char* s1, const char* s2) {
return PRInt32(PL_strcmp(s1, s2));