insertArgumentsFromResponse

Take the contents of a response-file 'buffer', parse it and put the resulting arguments in 'args' at 'argIndex'. 'argIndex' will be updated to point just after the inserted arguments. The logic of this should match that in setargv()

nothrow
bool
insertArgumentsFromResponse
(
char[] buffer
,
ref Strings args
,
ref size_t argIndex
)

Parameters

buffer
Type: char[]

mutable string containing the response file

args
Type: Strings

list of arguments

argIndex
Type: size_t

position in 'args' where response arguments are inserted

Return Value

Type: bool

true if another response argument was found

Meta