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.

nullTerminatedString

Given an index into string_bytes returns the null-terminated string found there.

ErrorBundle.nullTerminatedString
pub fn nullTerminatedString(eb: ErrorBundle, index: String) [:0]const u8

File

lib/std/zig/ErrorBundle.zig:151

Code

pub fn nullTerminatedString(eb: ErrorBundle, index: String) [:0]const u8 {
    const string_bytes = eb.string_bytes;
    var end: usize = index;
    while (string_bytes[end] != 0) {
        end += 1;
    }
    return string_bytes[index..end :0];
}