summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-07 22:40:05 -0400
committerJune McEnroe <june@causal.agency>2018-08-07 22:40:05 -0400
commit43eee8da713a7c7c3788238a6a5f301ae4672a79 (patch)
treedbea290ee50c63340b63d2ab8af8a5cea714cb2d /chat.h
parentMark log when scrolling up (diff)
downloadcatgirl-43eee8da713a7c7c3788238a6a5f301ae4672a79.tar.gz
catgirl-43eee8da713a7c7c3788238a6a5f301ae4672a79.zip
Implement cycling tab complete
Not properly hooked up to the UI yet.
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/chat.h b/chat.h
index 838c51d..09f0d2c 100644
--- a/chat.h
+++ b/chat.h
@@ -64,6 +64,9 @@ void input(char *line);
 void tabTouch(const char *word);
 void tabRemove(const char *word);
 void tabReplace(const char *prev, const char *next);
+const char *tabNext(const char *prefix);
+void tabAccept(void);
+void tabReject(void);
 
 wchar_t *ambstowcs(const char *src);
 char *awcstombs(const wchar_t *src);