30#include "../ows/ows.h"
45 err = regcomp(&preg, str_regex, REG_NOSUB | REG_EXTENDED);
49 match = regexec(&preg, str_request, 0, NULL, 0);
52 if (match == 0)
return true;
53 else if (match == REG_NOMATCH)
return false;
bool check_regexp(const char *str_request, const char *str_regex)