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.
sdl3bindings2/official/release-3.2.4/tmp/misc.zig

7 lines
144 B
Zig

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);
}