mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
2faf78fe7c
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1087 dbcabf3a-b0e7-0310-adc4-f8d773084564
17 lines
404 B
C
17 lines
404 B
C
#ifndef __BANS_H
|
|
#define __BANS_H
|
|
|
|
#include "irc-channels.h"
|
|
|
|
void bans_init(void);
|
|
void bans_deinit(void);
|
|
|
|
char *ban_get_mask(IRC_CHANNEL_REC *channel, const char *nick);
|
|
char *ban_get_masks(IRC_CHANNEL_REC *channel, const char *nicks);
|
|
|
|
void ban_set_type(const char *type);
|
|
void ban_set(IRC_CHANNEL_REC *channel, const char *bans);
|
|
void ban_remove(IRC_CHANNEL_REC *channel, const char *bans);
|
|
|
|
#endif
|