diff options
author | June McEnroe <june@causal.agency> | 2020-02-04 03:58:56 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-04 03:58:56 -0500 |
commit | 43845c61156bf27955891d68c2e1a2504786b587 (patch) | |
tree | e8cb5c9c104c23f5d60b920d24c21b1677bda5cc /chat.h | |
parent | Use time_t rather than struct tm (diff) | |
download | catgirl-43845c61156bf27955891d68c2e1a2504786b587.tar.gz catgirl-43845c61156bf27955891d68c2e1a2504786b587.zip |
Add beginnings of input handling
Diffstat (limited to '')
-rw-r--r-- | chat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chat.h b/chat.h index 9165c13..8de5df1 100644 --- a/chat.h +++ b/chat.h @@ -115,6 +115,7 @@ void uiShow(void); void uiHide(void); void uiDraw(void); void uiShowID(size_t id); +void uiRead(void); void uiWrite(size_t id, enum Heat heat, const time_t *time, const char *str); void uiFormat( size_t id, enum Heat heat, const time_t *time, const char *format, ... |