diff options
author | June McEnroe <june@causal.agency> | 2018-12-02 23:08:49 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-12-02 23:08:49 -0500 |
commit | 0e1297e068258baba6e26265d81b93bda71be8b2 (patch) | |
tree | d0e953245129e195fe59f14fe6d12f9a92365efc /chat.h | |
parent | Send automated messages to TagStatus with UICold (diff) | |
download | catgirl-0e1297e068258baba6e26265d81b93bda71be8b2.tar.gz catgirl-0e1297e068258baba6e26265d81b93bda71be8b2.zip |
Add -r option for realname
Diffstat (limited to '')
-rw-r--r-- | chat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chat.h b/chat.h index abbb050..31b31a2 100644 --- a/chat.h +++ b/chat.h @@ -31,8 +31,10 @@ #define errx(...) do { uiHide(); errx(__VA_ARGS__); } while (0) struct { + char *port; char *nick; char *user; + char *real; char *join; bool verbose; bool notify; @@ -40,7 +42,6 @@ struct { void selfNick(const char *nick); void selfUser(const char *user); -void selfJoin(const char *join); void eventWait(const char *argv[static 2]); void eventPipe(const char *argv[static 2]); |