NetSurf
|
#include "utils/config.h"
Go to the source code of this file.
Data Structures | |
struct | regex_t |
struct | regmatch_t |
Macros | |
#define | REG_NOMATCH 1 |
#define | REG_EXTENDED 1 |
#define | REG_ICASE (1 << 1) |
#define | REG_NEWLINE (1 << 2) |
#define | REG_NOSUB (1 << 3) |
Typedefs | |
typedef ssize_t | regoff_t |
Functions | |
int | regcomp (regex_t *restrict preg, const char *restrictregex, int cflags) |
size_t | regerror (int errorcode, const regex_t *restrict preg, char *restrict errbuf, size_t errbuf_size) |
int | regexec (const regex_t *restrict preg, const char *restrict string, size_t nmatch, regmatch_t pmatch[restrict], int eflags) |
void | regfree (regex_t *preg) |
int regcomp | ( | regex_t *restrict | preg, |
const char * | restrictregex, | ||
int | cflags | ||
) |
Definition at line 542 of file utils.c.
Referenced by regcomp_wrapper().
size_t regerror | ( | int | errorcode, |
const regex_t *restrict | preg, | ||
char *restrict | errbuf, | ||
size_t | errbuf_size | ||
) |
Definition at line 548 of file utils.c.
Referenced by regcomp_wrapper().
int regexec | ( | const regex_t *restrict | preg, |
const char *restrict | string, | ||
size_t | nmatch, | ||
regmatch_t | pmatch[restrict], | ||
int | eflags | ||
) |
Definition at line 560 of file utils.c.
References REG_NOMATCH.
Referenced by snregexec().
void regfree | ( | regex_t * | preg | ) |
Definition at line 569 of file utils.c.
Referenced by save_complete_finalise().