getenv_setargv

Parses an environment variable containing command-line flags and append them to args.

This function is used to read the content of DFLAGS. Flags are separated based on spaces and tabs.

void
getenv_setargv
(
const(char)* envvalue
,
Strings* args
)

Parameters

envvalue const(char)*

The content of an environment variable

args Strings*

Array to append the flags to, if any.

Suggestion Box / Bug Report