Function errstr [src]
Gets whatever the last errstr was
Prototype
pub fn errstr() []const u8
Source
pub fn errstr() []const u8 {
_ = syscall_bits.syscall2(.ERRSTR, @intFromPtr(&errstr_buf), ERRMAX);
return std.mem.span(@as([*:0]u8, @ptrCast(&errstr_buf)));
}