Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

addArgs

Appends each of args, verbatim, to the command line that will be passed to the process being run.

If any element of args is an input file, addFileInput must be used instead to ensure correct cache behavior.

If any element of args is an output file, addOutputFileArg (or related function) must be used instead to ensure correct cache behavior.

Run.addArgs
pub fn addArgs(run: *Run, args: []const []const u8) void

File

Code

pub fn addArgs(run: *Run, args: []const []const u8) void {
    for (args) |arg| run.addArg(arg);
}