]> git.sur5r.net Git - i3/i3/blob - include/regex.h
Merge branch 'next'
[i3/i3] / include / regex.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * regex.c: Interface to libPCRE (perl compatible regular expressions).
8  *
9  */
10 #ifndef I3_REGEX_H
11 #define I3_REGEX_H
12
13 /**
14  * Creates a new 'regex' struct containing the given pattern and a PCRE
15  * compiled regular expression. Also, calls pcre_study because this regex will
16  * most likely be used often (like for every new window and on every relevant
17  * property change of existing windows).
18  *
19  * Returns NULL if the pattern could not be compiled into a regular expression
20  * (and ELOGs an appropriate error message).
21  *
22  */
23 struct regex *regex_new(const char *pattern);
24
25 /**
26  * Frees the given regular expression. It must not be used afterwards!
27  *
28  */
29 void regex_free(struct regex *regex);
30
31 /**
32  * Checks if the given regular expression matches the given input and returns
33  * true if it does. In either case, it logs the outcome using LOG(), so it will
34  * be visible without debug logging.
35  *
36  */
37 bool regex_matches(struct regex *regex, const char *input);
38
39 #endif