mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-24 12:46:10 +03:00
9 lines
199 B
Zig
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));
|
|
}
|
|
};
|