i3
regex.h
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * regex.c: Interface to libPCRE (perl compatible regular expressions).
8  *
9  */
10 #pragma once
11 
12 #include <config.h>
13 
24 struct regex *regex_new(const char *pattern);
25 
30 void regex_free(struct regex *regex);
31 
38 bool regex_matches(struct regex *regex, const char *input);
struct regex * regex_new(const char *pattern)
Creates a new 'regex' struct containing the given pattern and a PCRE compiled regular expression.
Definition: regex.c:22
bool regex_matches(struct regex *regex, const char *input)
Checks if the given regular expression matches the given input and returns true if it does.
Definition: regex.c:73
void regex_free(struct regex *regex)
Frees the given regular expression.
Definition: regex.c:58
Regular expression wrapper.
Definition: data.h:249
char * pattern
Definition: data.h:250