This repository has been archived on 2026-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
|
const std = @import("std");
|
|
pub const c = @import("c.zig").c;
|
|
|
|
pub inline fn openURL(url: [*c]const u8) bool {
|
|
return c.SDL_OpenURL(url);
|
|
}
|