MCPcopy Create free account
hub / github.com/apache/httpd / looks_like_an_argument

Function looks_like_an_argument

modules/core/mod_macro.c:222–225  ·  view source on GitHub ↗

returns whether it looks like an argument, i.e. prefixed by ARG_PREFIX. */

Source from the content-addressed store, hash-verified

220 returns whether it looks like an argument, i.e. prefixed by ARG_PREFIX.
221*/
222static int looks_like_an_argument(const char *word)
223{
224 return ap_strchr(ARG_PREFIX, *word) != 0;
225}
226
227/*
228 generates an error on macro with two arguments of the same name.

Callers 2

check_macro_argumentsFunction · 0.85
macro_sectionFunction · 0.85

Calls 1

ap_strchrFunction · 0.85

Tested by

no test coverage detected