diff options
author | June McEnroe <june@causal.agency> | 2020-02-08 21:44:50 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-08 21:44:50 -0500 |
commit | 3e6868414811be8902e6973c78ef2010b26a9e08 (patch) | |
tree | df68dcfb29b6fb0c68b3d96a599a4051097f9fe9 /chat.h | |
parent | Allow overriding the /open utility (diff) | |
download | catgirl-3e6868414811be8902e6973c78ef2010b26a9e08.tar.gz catgirl-3e6868414811be8902e6973c78ef2010b26a9e08.zip |
Add /copy
Diffstat (limited to '')
-rw-r--r-- | chat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chat.h b/chat.h index 3084359..8bc8e81 100644 --- a/chat.h +++ b/chat.h @@ -170,9 +170,11 @@ size_t completeID(const char *str); enum Color completeColor(size_t id, const char *str); extern const char *urlOpenUtil; +extern const char *urlCopyUtil; void urlScan(size_t id, const char *nick, const char *mesg); void urlOpenCount(size_t id, size_t count); void urlOpenMatch(size_t id, const char *str); +void urlCopyMatch(size_t id, const char *str); FILE *configOpen(const char *path, const char *mode); int getopt_config( |