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.
fnWinStartup() callconv(.withStackAlign(.c, 1)) noreturn {
// Switch from the x87 fpu state set by windows to the state expected by the gnu abi.if (builtin.cpu.arch.isX86() andbuiltin.abi == .gnu) asmvolatile ("fninit");
if (!builtin.single_threadedand !builtin.link_libc) {
_ = @import("os/windows/tls.zig");
}
std.Thread.maybeAttachSignalStack();
std.debug.maybeEnableSegfaultHandler();
std.os.windows.ntdll.RtlExitUserProcess(
callMain(std.os.windows.peb().ProcessParameters.CommandLine.slice(), .global),
);
}