diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-08 21:02:26 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-08 21:02:26 +0100 |
commit | 4c9ef597e5503fa571276fd16739410cd9847f91 (patch) | |
tree | ca8efa3593a107edd394221be06586fd2726b2ef /functions.h | |
parent | 243d947c43a4f71c2a027e9909a154ab48c09907 (diff) |
Make TOPIC tracking/following/setting/etc. work for most/all scenarios and ensure it's always given out to new clients correctly. Also misc other bug fixes.
Diffstat (limited to 'functions.h')
-rw-r--r-- | functions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/functions.h b/functions.h index d51d61c..f12e13f 100644 --- a/functions.h +++ b/functions.h @@ -33,4 +33,7 @@ void stripprefix(char *string); // Extract final parameter from IRC message, removing the leading colon ':' void extractfinalparameter(char *string); +// Extract the IRC nick from a prefix +void extractnickfromprefix(char *string); + #endif |