1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef TEXT_REGEX_H
#define TEXT_REGEX_H
#include <regex.h>
#include "text.h"
typedef struct Regex Regex;
typedef Filerange RegexMatch;
Regex *text_regex_new(void);
int text_regex_compile(Regex*, const char *pattern, int cflags);
size_t text_regex_nsub(Regex*);
void text_regex_free(Regex*);
int text_regex_match(Regex*, const char *data, int eflags);
int text_search_range_forward(Text*, size_t pos, size_t len, Regex *r, size_t nmatch, RegexMatch pmatch[], int eflags);
int text_search_range_backward(Text*, size_t pos, size_t len, Regex *r, size_t nmatch, RegexMatch pmatch[], int eflags);
#endif
|