[utf8] Adding length argument to string_script function

This commit is contained in:
Al
2015-06-24 13:39:09 -05:00
parent 5e71a9d805
commit 581cf406a6
2 changed files with 7 additions and 5 deletions

View File

@@ -18,6 +18,6 @@ typedef struct script_languages {
script_t get_char_script(uint32_t ch);
script_languages_t get_script_languages(script_t script);
script_t string_script(char *str, size_t *len);
script_t string_script(char *str, size_t len, size_t *script_len);
#endif