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.

defineCMacroRaw

name_and_value looks like [name]=[value].

TranslateC.defineCMacroRaw
pub fn defineCMacroRaw(translate_c: *TranslateC, name_and_value: []const u8) void

File

lib/std/Build/Step/TranslateC.zig:166

Code

pub fn defineCMacroRaw(translate_c: *TranslateC, name_and_value: []const u8) void {
    const graph = translate_c.step.owner.graph;
    const arena = graph.arena;
    const wc = &graph.wip_configuration;
    const macro_string = wc.addString(name_and_value) catch @panic("OOM");
    translate_c.c_macros.append(arena, macro_string) catch @panic("OOM");
}