#include "Compiler.h"
#include <wchar.h>
Go to the source code of this file.
gcc_pure const wchar_t* FindStringSuffix |
( |
const wchar_t * |
p, |
|
|
const wchar_t * |
suffix |
|
) |
| |
Check if the given string ends with the specified suffix.
If yes, returns the position of the suffix, and nullptr otherwise.
gcc_nonnull_all const wchar_t* StringAfterPrefix |
( |
const wchar_t * |
string, |
|
|
const wchar_t * |
prefix |
|
) |
| |
Returns the portion of the string after a prefix.
If the string does not begin with the specified prefix, this function returns nullptr.
gcc_pure bool StringEndsWith |
( |
const wchar_t * |
haystack, |
|
|
const wchar_t * |
needle |
|
) |
| |
static bool StringIsEmpty |
( |
const wchar_t * |
string | ) |
|
|
inlinestatic |
gcc_pure bool StringStartsWith |
( |
const wchar_t * |
haystack, |
|
|
const wchar_t * |
needle |
|
) |
| |