ghostty/pkg/fontconfig/config.zig
2022-09-14 09:23:02 -07:00

9 lines
199 B
Zig

const std = @import("std");
const c = @import("c.zig");
pub const Config = opaque {
pub fn destroy(self: *Config) void {
c.FcConfigDestroy(@ptrCast(*c.struct__FcConfig, self));
}
};