This repository was archived by the owner on Jun 6, 2021. It is now read-only.
forked from atheme/atheme
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmatch.h
76 lines (57 loc) · 1.98 KB
/
match.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Copyright (c) 2003-2004 E. Will et al.
* Copyright (c) 2005-2006 Atheme Development Group
* Rights to this code are as defined in doc/LICENSE.
*
* String matching
*
*/
#ifndef ATHEME_MATCH_H
#define ATHEME_MATCH_H
/* cidr.c */
E int match_ips(const char *mask, const char *address);
E int match_cidr(const char *mask, const char *address);
/* match.c */
#define MATCH_RFC1459 0
#define MATCH_ASCII 1
E int match_mapping;
#define IsLower(c) ((unsigned char)(c) > 0x5f)
#define IsUpper(c) ((unsigned char)(c) < 0x60)
#define C_ALPHA 0x00000001
#define C_DIGIT 0x00000002
#define C_NICK 0x00000004
#define C_USER 0x00000008
E const unsigned int charattrs[];
#define IsAlpha(c) (charattrs[(unsigned char) (c)] & C_ALPHA)
#define IsDigit(c) (charattrs[(unsigned char) (c)] & C_DIGIT)
#define IsNickChar(c) (charattrs[(unsigned char) (c)] & C_NICK)
#define IsUserChar(c) (charattrs[(unsigned char) (c)] & C_USER)
#define IsAlphaNum(c) (IsAlpha((c)) || IsDigit((c)))
#define IsNon(c) (!IsAlphaNum((c)))
E const unsigned char ToLowerTab[];
E const unsigned char ToUpperTab[];
void set_match_mapping(int);
E int ToLower(int);
E int ToUpper(int);
E int irccasecmp(const char *, const char *);
E int ircncasecmp(const char *, const char *, size_t);
E void irccasecanon(char *);
E void strcasecanon(char *);
E void noopcanon(char *);
E int match(const char *, const char *);
E char *collapse(char *);
/* regex_create() flags */
#define AREGEX_ICASE 1 /* case insensitive */
#define AREGEX_PCRE 2 /* use libpcre engine */
#define AREGEX_KLINE 4 /* XXX for rwatch, match kline */
typedef struct atheme_regex_ atheme_regex_t;
E atheme_regex_t *regex_create(char *pattern, int flags);
E char *regex_extract(char *pattern, char **pend, int *pflags);
E bool regex_match(atheme_regex_t *preg, char *string);
E bool regex_destroy(atheme_regex_t *preg);
#endif
/* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs
* vim:ts=8
* vim:sw=8
* vim:noexpandtab
*/