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.

addIdent

ConfigHeader.addIdent
pub fn addIdent(config_header: *ConfigHeader, name: []const u8, value: []const u8) void

File

lib/std/Build/Step/ConfigHeader.zig:110

Code

pub fn addIdent(config_header: *ConfigHeader, name: []const u8, value: []const u8) void {
    const arena = config_header.step.owner.allocator;
    config_header.values.put(arena, name, .{ .ident = value }) catch @panic("OOM");
}