MCPcopy Create free account
hub / github.com/coreboot/coreboot / re_exec

Function re_exec

util/kconfig/regex.c:4684–4691  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

4682
4683
4684int
4685re_exec (s)
4686 const char *s;
4687{
4688 const int len = strlen (s);
4689 return
4690 0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
4691}
4692#endif /* not emacs and not _POSIX_SOURCE */
4693
4694/* POSIX.2 functions. Don't define these for Emacs. */

Callers

nothing calls this directly

Calls 2

strlenFunction · 0.85
re_searchFunction · 0.85

Tested by

no test coverage detected