diff options
author | LemonBoy <thatlemon@gmail.com> | 2015-09-09 23:55:00 +0200 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2015-09-09 23:55:00 +0200 |
commit | 4346c2a6d479b9c4d94fabc35ade324fdbe0e0d0 (patch) | |
tree | 9ec96a4028af9a033136cd50124bad6c71e798b5 /src/fe-common/irc/fe-irc-channels.h | |
parent | 57d645f24603e8c7d2cfe7098b3dbb1359cd8d22 (diff) | |
download | irssi-4346c2a6d479b9c4d94fabc35ade324fdbe0e0d0.zip |
Move the function prototypes in a separate header
Diffstat (limited to 'src/fe-common/irc/fe-irc-channels.h')
-rw-r--r-- | src/fe-common/irc/fe-irc-channels.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/fe-common/irc/fe-irc-channels.h b/src/fe-common/irc/fe-irc-channels.h new file mode 100644 index 00000000..d05c91a5 --- /dev/null +++ b/src/fe-common/irc/fe-irc-channels.h @@ -0,0 +1,10 @@ +#ifndef __FE_IRC_CHANNELS_H +#define __FE_IRC_CHANNELS_H + +int fe_channel_is_opchannel(IRC_SERVER_REC *server, const char *target); +const char *fe_channel_skip_prefix(IRC_SERVER_REC *server, const char *target); + +void fe_irc_channels_init(void); +void fe_irc_channels_deinit(void); + +#endif |