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.

NLDLY

linux.NLDLY
pub const NLDLY = if (is_ppc or native_arch == .alpha) enum(u2)

File

lib/std/os/linux.zig:8340

Code

pub const NLDLY = if (is_ppc or native_arch == .alpha) enum(u2) {
    NL0 = 0,
    NL1 = 1,
    NL2 = 2,
    NL3 = 3,
} else enum(u1) {
    NL0 = 0,
    NL1 = 1,
}