diff options
Diffstat (limited to 'src/util/string.cpp')
-rw-r--r-- | src/util/string.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util/string.cpp b/src/util/string.cpp index 92a4735c4..5ba97afd5 100644 --- a/src/util/string.cpp +++ b/src/util/string.cpp @@ -30,7 +30,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "../porting.h" #ifdef __ANDROID__ -const wchar_t* wide_chars = L" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; +const wchar_t* wide_chars = + L" !\"#$%&'()*+,-./0123456789:;<=>?@" + L"ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`" + L"abcdefghijklmnopqrstuvwxyz{|}~"; int wctomb(char *s, wchar_t wc) { |