Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
348
static VALUE *
349
int_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
docolon
Function · 0.85
eval6
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