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.

environString

Threaded.environString
pub fn environString(t: *Threaded, comptime name: []const u8) ?[:0]const u8

File

lib/std/Io/Threaded.zig:17121

Code

pub fn environString(t: *Threaded, comptime name: []const u8) ?[:0]const u8 {
    t.scanEnviron();
    return @field(t.environ.string, name);
}