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.
inlinefnoffsetPtr(ptr: [*]constu8, offset: usize) [*]constu8 {
// ptr + offset doesn't work at comptime so we need this instead.return@as([*]constu8, @ptrCast(&ptr[offset]));
}