mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 22:52:15 +02:00
13 lines
260 B
C
13 lines
260 B
C
|
|
#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
|