diff options
author | 2016-07-02 12:55:06 -0400 | |
---|---|---|
committer | 2016-07-02 14:23:54 -0400 | |
commit | d67695e724bdb7225c6701371545d4fbc16078ef (patch) | |
tree | 9fc5cc9df0bf7314fdb28cfea7bdec7126045ed6 /src/lib/util/unicode.h | |
parent | 60c81498b0b777053268511e1723d5e0a8dd90ae (diff) |
Converted menu_file_create to use std::string for its filename buffer
Diffstat (limited to 'src/lib/util/unicode.h')
-rw-r--r-- | src/lib/util/unicode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/util/unicode.h b/src/lib/util/unicode.h index aa13d22842a..579ce53e665 100644 --- a/src/lib/util/unicode.h +++ b/src/lib/util/unicode.h @@ -97,6 +97,7 @@ int uchar_from_utf16f(unicode_char *uchar, const utf16_char *utf16char, size_t c // converting 32-bit Unicode chars to strings int utf8_from_uchar(char *utf8string, size_t count, unicode_char uchar); +std::string utf8_from_uchar(unicode_char uchar); int utf16_from_uchar(utf16_char *utf16string, size_t count, unicode_char uchar); int utf16f_from_uchar(utf16_char *utf16string, size_t count, unicode_char uchar); |