1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Add the declaration of the functions that return buffers in string library.

This commit is contained in:
Sandu Liviu Catalin 2016-03-25 01:54:43 +02:00
parent 299bc5ba77
commit 8828c004ca

View File

@ -20,16 +20,19 @@ CSStr CenterStr(CSStr t, SQChar f, Uint32 w);
* Get a new string with only the alpha numeric characters from the specified string.
*/
CSStr StrJustAlphaNum(CSStr str);
Buffer StrJustAlphaNumB(CSStr str);
/* ------------------------------------------------------------------------------------------------
* Convert the specified string to lowercase.
*/
CSStr StrToLowercase(CSStr str);
Buffer StrToLowercaseB(CSStr str);
/* ------------------------------------------------------------------------------------------------
* Convert the specified string to uppercase.
*/
CSStr StrToUppercase(CSStr str);
Buffer StrToUppercaseB(CSStr str);
} // Namespace:: SqMod