diff options
author | June McEnroe <june@causal.agency> | 2018-08-07 15:43:49 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-07 15:46:04 -0400 |
commit | fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3 (patch) | |
tree | 6d47583bd0234fb1107781a641ce666bb2fc9b61 /chat.h | |
parent | Populate tab-complete list (diff) | |
download | catgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.tar.gz catgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.zip |
Convert input to multibyte before handling
Diffstat (limited to '')
-rw-r--r-- | chat.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chat.h b/chat.h index 5d9dc1c..8af6e8a 100644 --- a/chat.h +++ b/chat.h @@ -58,11 +58,10 @@ void uiFmt(const wchar_t *format, ...); #endif void handle(char *line); -void input(wchar_t *line); +void input(char *line); void tabTouch(const char *word); void tabRemove(const char *word); void tabReplace(const char *prev, const char *next); -wchar_t *wcssep(wchar_t **stringp, const wchar_t *delim); int vaswprintf(wchar_t **ret, const wchar_t *format, va_list ap); |