about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-07 15:43:49 -0400
committerJune McEnroe <june@causal.agency>2018-08-07 15:46:04 -0400
commitfe21b1410f3a2a0ee756a4b30dbd9ba91434cca3 (patch)
tree6d47583bd0234fb1107781a641ce666bb2fc9b61 /chat.h
parentPopulate tab-complete list (diff)
downloadcatgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.tar.gz
catgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.zip
Convert input to multibyte before handling
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h3
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);