f354f53435
Including config.h is necessary to get e.g. the _GNU_SOURCE define and any other definitions that autoconf declares. Hence, config.h needs to be included as the first header in each file. This is done either via: 1. Including "common.h" (i3bar) 2. Including "libi3.h" 3. Including "all.h" (i3) 4. Including <config.h> directly Also remove now-unused I3__FILE__, add copyright/license statement where missing and switch include/all.h to #pragma once.
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/*
|
|
* vim:ts=4:sw=4:expandtab
|
|
*
|
|
* i3 - an improved dynamic tiling window manager
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
|
*
|
|
* regex.c: Interface to libPCRE (perl compatible regular expressions).
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <config.h>
|
|
|
|
/**
|
|
* Creates a new 'regex' struct containing the given pattern and a PCRE
|
|
* compiled regular expression. Also, calls pcre_study because this regex will
|
|
* most likely be used often (like for every new window and on every relevant
|
|
* property change of existing windows).
|
|
*
|
|
* Returns NULL if the pattern could not be compiled into a regular expression
|
|
* (and ELOGs an appropriate error message).
|
|
*
|
|
*/
|
|
struct regex *regex_new(const char *pattern);
|
|
|
|
/**
|
|
* Frees the given regular expression. It must not be used afterwards!
|
|
*
|
|
*/
|
|
void regex_free(struct regex *regex);
|
|
|
|
/**
|
|
* Checks if the given regular expression matches the given input and returns
|
|
* true if it does. In either case, it logs the outcome using LOG(), so it will
|
|
* be visible without debug logging.
|
|
*
|
|
*/
|
|
bool regex_matches(struct regex *regex, const char *input);
|