summaryrefslogtreecommitdiff
path: root/nick.h
blob: 8cac6d8c1b84d48cbc3711977c6825a5140baf76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _NICK_H_
#define _NICK_H_

#include <pcre.h>

struct nick_t {
	char *name;
	struct nick_regex_t {
		pcre *re;
		struct nick_regex_t *next;
	} *regexes;
	struct nick_t *next;
};

void nick_init();
int nick_add(char *name);
int nick_regex_add(struct nick_t *nick, char *re_s);
void nick_free();

#endif