aboutsummaryrefslogtreecommitdiff
path: root/regex.h
blob: af8e0a2a0cf0f5a7557b3dec908d3b3e8c7bdcaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#define PCRE2_CODE_UNIT_WIDTH 8

#include <inttypes.h>
#include <pcre2.h>
#include <stdlib.h>
#include "Clean.h"

pcre2_code* cleanregex_pcre2_compile(CleanString*, int64_t flags);
int64_t cleanregex_match(pcre2_code* regex, CleanString* subject);