mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
28 lines
975 B
C++
28 lines
975 B
C++
#pragma once
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include "SqBase.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* 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
|