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.

create

FindProgram.create
pub fn create(owner: *std.Build, options: Options) *FindProgram

File

lib/std/Build/Step/FindProgram.zig:17

Code

pub fn create(owner: *std.Build, options: Options) *FindProgram {
    const graph = owner.graph;
    const wc = &graph.wip_configuration;
    const fp = graph.create(FindProgram);
    fp.* = .{
        .step = .init(.{
            .tag = base_tag,
            .name = owner.fmt("find program {s} ({d} candidates)", .{ options.names[0], options.names.len }),
            .owner = owner,
        }),
        .found_path = graph.addGeneratedFile(&fp.step),
        .names = wc.addStringList(options.names) catch @panic("OOM"),
    };
    return fp;
}