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

Function append_unset_var

src/env.c:185–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185static void
186append_unset_var (char const *var)
187{
188 if (usvars_used == usvars_alloc)
189 usvars = xpalloc (usvars, &usvars_alloc, 1, -1, sizeof *usvars);
190 usvars[usvars_used++] = var;
191}
192
193static void
194unset_envvars (void)

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected