diff options
author | June McEnroe <june@causal.agency> | 2023-02-05 20:03:30 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2023-02-05 20:03:30 -0500 |
commit | 0a876d27cab179928f6392fd14b453bf30829c51 (patch) | |
tree | fa61ae03449ebd3e3ca0980ad760c2c59a1647cc /chat.h | |
parent | Fix what went wrong, part 2 (diff) | |
download | catgirl-0a876d27cab179928f6392fd14b453bf30829c51.tar.gz catgirl-0a876d27cab179928f6392fd14b453bf30829c51.zip |
Fix what went wrong, part 3
Diffstat (limited to '')
-rw-r--r-- | chat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chat.h b/chat.h index ef5779a..6753fcb 100644 --- a/chat.h +++ b/chat.h @@ -417,9 +417,11 @@ void completePull(uint id, const char *str, enum Color color); void completeReplace(const char *old, const char *new); void completeRemove(uint id, const char *str); enum Color completeColor(uint id, const char *str); +uint *completeBits(uint id, const char *str); const char *completePrefix(struct Cursor *curs, uint id, const char *prefix); const char *completeSubstr(struct Cursor *curs, uint id, const char *substr); -uint completeNextID(struct Cursor *curs, const char *str); +const char *completeEach(struct Cursor *curs, uint id); +uint completeEachID(struct Cursor *curs, const char *str); void completeAccept(struct Cursor *curs); void completeReject(struct Cursor *curs); |