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:
parent
299bc5ba77
commit
8828c004ca
@ -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.
|
* Get a new string with only the alpha numeric characters from the specified string.
|
||||||
*/
|
*/
|
||||||
CSStr StrJustAlphaNum(CSStr str);
|
CSStr StrJustAlphaNum(CSStr str);
|
||||||
|
Buffer StrJustAlphaNumB(CSStr str);
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* Convert the specified string to lowercase.
|
* Convert the specified string to lowercase.
|
||||||
*/
|
*/
|
||||||
CSStr StrToLowercase(CSStr str);
|
CSStr StrToLowercase(CSStr str);
|
||||||
|
Buffer StrToLowercaseB(CSStr str);
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* Convert the specified string to uppercase.
|
* Convert the specified string to uppercase.
|
||||||
*/
|
*/
|
||||||
CSStr StrToUppercase(CSStr str);
|
CSStr StrToUppercase(CSStr str);
|
||||||
|
Buffer StrToUppercaseB(CSStr str);
|
||||||
|
|
||||||
} // Namespace:: SqMod
|
} // Namespace:: SqMod
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user