diff options
author | C. McEnroe | 2020-02-13 21:57:55 -0500 |
---|---|---|
committer | C. McEnroe | 2020-02-13 21:57:55 -0500 |
commit | 1e226593ef9860237ec08ad66affcb7da7138f5d (patch) | |
tree | 2b0bc6c5902166a71412128cd17f4f4c066906ba /chat.h | |
parent | a6bc2ea7c38814a5fd552826393cb870efdc263b (diff) |
Rename procPipe to utilPipe
Diffstat (limited to 'chat.h')
-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; |