MCPcopy Create free account
hub / github.com/coreutils/coreutils / nextarg

Function nextarg

src/expr.c:515–526  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

513 STR must not be null. */
514
515static bool
516nextarg (char const *str)
517{
518 if (*args == NULL)
519 return false;
520 else
521 {
522 bool r = streq (*args, str);
523 args += r;
524 return r;
525 }
526}
527
528/* Return true if there no more tokens. */
529

Callers 8

eval7Function · 0.85
eval6Function · 0.85
eval5Function · 0.85
eval4Function · 0.85
eval3Function · 0.85
eval2Function · 0.85
eval1Function · 0.85
evalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected