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

Function str_value

src/expr.c:359–366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357/* Return a VALUE for S. */
358
359static VALUE *
360str_value (char const *s)
361{
362 VALUE *v = xmalloc (sizeof *v);
363 v->type = string;
364 v->u.s = xstrdup (s);
365 return v;
366}
367
368/* Free VALUE V, including structure components. */
369

Callers 3

docolonFunction · 0.85
eval7Function · 0.85
eval6Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected