ghostty/pkg/fontconfig/char_set.zig
Mitchell Hashimoto 314f9287b1 Update Zig (#164)
* 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
2023-06-30 12:15:31 -07:00

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