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

Function trace

src/expr.c:551–558  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

549/* Print evaluation trace and args remaining. */
550
551static void
552trace (char const *fxn)
553{
554 printf ("%s:", fxn);
555 for (char **a = args; *a; a++)
556 printf (" %s", *a);
557 putchar ('\n');
558}
559#endif
560
561/* Do the : operator.

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