mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00

* update zig * pkg/fontconfig: clean up @as * pkg/freetype,harfbuzz: clean up @as * pkg/imgui: clean up @as * pkg/macos: clean up @as * pkg/pixman,utf8proc: clean up @as * clean up @as * lots more @as cleanup * undo flatpak changes * clean up @as
41 lines
1003 B
Zig
41 lines
1003 B
Zig
const std = @import("std");
|
|
const assert = std.debug.assert;
|
|
const c = @import("c.zig");
|
|
|
|
pub const CharSet = opaque {
|
|
pub fn create() *CharSet {
|
|
return @ptrCast(c.FcCharSetCreate());
|
|
}
|
|
|
|
pub fn destroy(self: *CharSet) void {
|
|
c.FcCharSetDestroy(self.cval());
|
|
}
|
|
|
|
pub fn addChar(self: *CharSet, cp: u32) bool {
|
|
return c.FcCharSetAddChar(self.cval(), cp) == c.FcTrue;
|
|
}
|
|
|
|
pub fn hasChar(self: *const CharSet, cp: u32) bool {
|
|
return c.FcCharSetHasChar(self.cvalConst(), cp) == c.FcTrue;
|
|
}
|
|
|
|
pub inline fn cval(self: *CharSet) *c.struct__FcCharSet {
|
|
return @ptrCast(self);
|
|
}
|
|
|
|
pub inline fn cvalConst(self: *const CharSet) *const c.struct__FcCharSet {
|
|
return @ptrCast(self);
|
|
}
|
|
};
|
|
|
|
test "create" {
|
|
const testing = std.testing;
|
|
|
|
var fs = CharSet.create();
|
|
defer fs.destroy();
|
|
|
|
try testing.expect(!fs.hasChar(0x20));
|
|
try testing.expect(fs.addChar(0x20));
|
|
try testing.expect(fs.hasChar(0x20));
|
|
}
|