sdl3bind/castholm/v0.1.1-SDL-3.1.8/api/error.zig

15 lines
292 B
Zig

const std = @import("std");
pub const c = @import("c.zig").c;
pub inline fn outOfMemory() bool {
return @bitCast(c.SDL_OutOfMemory());
}
pub inline fn getError() [*c]const u8 {
return c.SDL_GetError();
}
pub inline fn clearError() bool {
return @bitCast(c.SDL_ClearError());
}