mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add 'UTF8CharLength(..)' to utility.cpp
This commit is contained in:
parent
e1ede0c995
commit
e22c17340f
@ -32,6 +32,7 @@ string Base64Decode(const string& svInput);
|
||||
|
||||
string UTF8Encode(const wstring& wsvInput);
|
||||
string UTF8Decode(const string& svInput);
|
||||
size_t UTF8CharLength(const uint8_t cInput);
|
||||
|
||||
bool StringIsDigit(const string& svInput);
|
||||
bool CompareStringAlphabetically(const string& svA, const string& svB);
|
||||
|
@ -485,6 +485,23 @@ string UTF8Decode(const string& svInput)
|
||||
return "";
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// For obtaining UTF8 character length.
|
||||
size_t UTF8CharLength(const uint8_t cInput)
|
||||
{
|
||||
if ((cInput & 0xFE) == 0xFC)
|
||||
return 6;
|
||||
if ((cInput & 0xFC) == 0xF8)
|
||||
return 5;
|
||||
if ((cInput & 0xF8) == 0xF0)
|
||||
return 4;
|
||||
else if ((cInput & 0xF0) == 0xE0)
|
||||
return 3;
|
||||
else if ((cInput & 0xE0) == 0xC0)
|
||||
return 2;
|
||||
return 1;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// For checking if a string is a number.
|
||||
bool StringIsDigit(const string& svInput)
|
||||
|
Loading…
x
Reference in New Issue
Block a user