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

Function int_value

src/expr.c:348–355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

346/* Return a VALUE for I. */
347
348static VALUE *
349int_value (unsigned long int i)
350{
351 VALUE *v = xmalloc (sizeof *v);
352 v->type = integer;
353 mpz_init_set_ui (v->u.i, i);
354 return v;
355}
356
357/* Return a VALUE for S. */
358

Callers 5

docolonFunction · 0.85
eval6Function · 0.85
eval2Function · 0.85
eval1Function · 0.85
evalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected