diff options
author | June McEnroe <june@causal.agency> | 2018-08-04 17:54:46 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-04 17:54:46 -0400 |
commit | 35589a562473e6eab83933e498fbecf5540431d6 (patch) | |
tree | 014d092b3b19fb17c18a60c71b6829bd8c6184c8 /chat.h | |
parent | Fix chat draw boundaries (diff) | |
download | catgirl-35589a562473e6eab83933e498fbecf5540431d6.tar.gz catgirl-35589a562473e6eab83933e498fbecf5540431d6.zip |
Rename client to irc
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chat.h b/chat.h index 4c1cff4..04e3c6b 100644 --- a/chat.h +++ b/chat.h @@ -28,12 +28,12 @@ struct { char *chan; } chat; -int clientConnect(const char *host, const char *port, const char *webPass); -void clientRead(void); -void clientWrite(const char *ptr, size_t len); +int ircConnect(const char *host, const char *port, const char *webPass); +void ircRead(void); +void ircWrite(const char *ptr, size_t len); __attribute__((format(printf, 1, 2))) -void clientFmt(const char *format, ...); +void ircFmt(const char *format, ...); void uiInit(void); void uiHide(void); |