Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
370
static void
371
freev (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
eval6
Function · 0.85
eval5
Function · 0.85
eval4
Function · 0.85
eval3
Function · 0.85
eval2
Function · 0.85
eval1
Function · 0.85
eval
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected