You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/frontends/kolibrios/kolibri_regex.c

25 lines
290 B

#include<sys/types.h>
#include<regex.h>
int regcomp(regex_t * regexp, const char *str, int val)
{
}
size_t regerror(int val, const regex_t *r, char *c, size_t t)
{
}
int regexec(const regex_t *r, const char *c, size_t s, regmatch_t regm[], int i)
{
}
void regfree(regex_t *r)
{
}