diff options
author | June McEnroe <june@causal.agency> | 2020-02-13 21:57:55 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-13 21:57:55 -0500 |
commit | 1e226593ef9860237ec08ad66affcb7da7138f5d (patch) | |
tree | 2b0bc6c5902166a71412128cd17f4f4c066906ba /chat.h | |
parent | Set swap correctly when closing a window (diff) | |
download | catgirl-1e226593ef9860237ec08ad66affcb7da7138f5d.tar.gz catgirl-1e226593ef9860237ec08ad66affcb7da7138f5d.zip |
Rename procPipe to utilPipe
Diffstat (limited to '')
-rw-r--r-- | chat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.h b/chat.h index 0ef0952..b852c44 100644 --- a/chat.h +++ b/chat.h @@ -28,8 +28,6 @@ typedef unsigned char byte; -int procPipe[2]; - enum Color { White, Black, Blue, Green, Red, Brown, Magenta, Orange, Yellow, LightGreen, Cyan, LightCyan, LightBlue, Pink, Gray, LightGray, @@ -147,6 +145,8 @@ const char *commandIsNotice(size_t id, const char *input); const char *commandIsAction(size_t id, const char *input); void commandComplete(void); +int utilPipe[2]; + enum { UtilCap = 16 }; struct Util { size_t argc; |