MCPcopy Index your code
hub / github.com/MapServer/MapServer / ms_regexec

Function ms_regexec

mapregex.c:69–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69MS_API_EXPORT(int) ms_regexec(const ms_regex_t *regex, const char *string, size_t nmatch, ms_regmatch_t pmatch[], int eflags)
70{
71 /*This next line only works because we know that regmatch_t
72 and ms_regmatch_t are exactly alike (POSIX STANDARD)*/
73 return regexec((const regex_t*)(regex->sys_regex),
74 string, nmatch,
75 (regmatch_t*) pmatch, eflags);
76}
77
78MS_API_EXPORT(void) ms_regfree(ms_regex_t *regex)
79{

Callers 9

yyparseFunction · 0.70
msEvalRegexFunction · 0.70
msTimeMatchPatternFunction · 0.70
msParseTimeFunction · 0.70
msTimeGetResolutionFunction · 0.70
generateLegendTemplateFunction · 0.70
msReturnPageFunction · 0.70
msEvalExpressionFunction · 0.70
msGetClass_StringFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected