diff options
author | Robert Pösel <robyer@seznam.cz> | 2017-03-05 09:15:39 +0100 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2017-03-05 09:15:39 +0100 |
commit | cc8f9defc89f3c56088ac8de2e979938a0e85947 (patch) | |
tree | 42768529e6e51ba7855b416b0ab33a2f8409d7b9 /utils/std_string_utils.h | |
parent | 3f04f6768745e5fe08cd7b681d48097536980c77 (diff) |
Facebook: Fix cutting unicode strings (fixes #711)
Diffstat (limited to 'utils/std_string_utils.h')
-rw-r--r-- | utils/std_string_utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/std_string_utils.h b/utils/std_string_utils.h index a49062a0d1..96ee5ca4d9 100644 --- a/utils/std_string_utils.h +++ b/utils/std_string_utils.h @@ -73,6 +73,7 @@ namespace utils std::string source_get_value2(std::string* data, const char *term, const char *endings, bool wholeString = false);
std::string source_get_form_data(std::string* data, bool hiddenOnly = false);
std::string rand_string(int len, const char *chars = "0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz", unsigned int *number = NULL);
+ std::string truncate_utf8(const std::string &text, size_t maxLength);
void explode(std::string str, const std::string &separator, std::vector<std::string>* results);
void append_ordinal(unsigned long value, std::string* data);
std::wstring prepare_name(const std::wstring &name, bool withSurnameLetter);
|