![]() |
ndn-lite
|
Go to the source code of this file.
Typedefs | |
typedef struct regex_t * | re_t |
Typedef'd pointer to get abstract datatype. More... | |
Functions | |
re_t | re_compile (const char *pattern) |
Compile regex string pattern to a regex_t-array. More... | |
int | re_matchp (re_t pattern, const char *text) |
Find matches of the compiled pattern inside text. More... | |
int | re_match (const char *pattern, const char *text) |
Find matches of the txt pattern inside text (will compile automatically first). More... | |