const std = @import("std");
pub const c = @import("c.zig").c;
pub inline fn openURL(url: [*c]const u8) bool {
return @bitCast(c.SDL_OpenURL(url));
}