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

Function freev

src/expr.c:370–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368/* Free VALUE V, including structure components. */
369
370static void
371freev (VALUE *v)
372{
373 if (v->type == string)
374 free (v->u.s);
375 else
376 mpz_clear (v->u.i);
377 free (v);
378}
379
380/* Print VALUE V. */
381

Callers 7

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