1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-18 19:04:14 -04:00

Added mbstate_t

This commit is contained in:
James Booth 2013-01-04 00:48:12 +00:00
parent 57f9e43566
commit 516ba16627

View File

@ -188,8 +188,10 @@ inp_get_char(char *input, int *size)
// otherwise just append
} else {
mbstate_t state;
memset(&state, '\0', sizeof (state));
char bytes[5];
size_t utf_len = wcrtomb(bytes, ch, NULL);
size_t utf_len = wcrtomb(bytes, ch, &state);
int i;
for (i = 0 ; i < utf_len; i++) {
input[(*size)++] = bytes[i];