X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=blobdiff_plain;f=include%2Fregex.h;h=abda3cd7f4370758d9909c79ade589d5da253d21;hp=adfa665635e9879ce7f8521f6cf17341f3230862;hb=HEAD;hpb=355082a74cfebb4f197fc4edb0571620349310f9 diff --git a/include/regex.h b/include/regex.h index adfa6656..abda3cd7 100644 --- a/include/regex.h +++ b/include/regex.h @@ -1,9 +1,15 @@ /* * 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). + * */ -#ifndef _REGEX_H -#define _REGEX_H +#pragma once + +#include /** * Creates a new 'regex' struct containing the given pattern and a PCRE @@ -26,9 +32,7 @@ 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 any debug loglevel. + * be visible without debug logging. * */ bool regex_matches(struct regex *regex, const char *input); - -#endif