summaryrefslogtreecommitdiff
path: root/src/irc/core/bans.h
blob: 9a6587a7374002c4ab6946845277382a4bb05074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);

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 *ban);

#endif