blob: 680877c944fa202eb55562e07a20adb00c26a587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __IRC_MASKS_H
#define __IRC_MASKS_H
#include "masks.h"
#define IRC_MASK_NICK 0x01
#define IRC_MASK_USER 0x02
#define IRC_MASK_HOST 0x04
#define IRC_MASK_DOMAIN 0x08
char *irc_get_mask(const char *nick, const char *address, int flags);
#endif
|