ghostty/pkg/fontconfig/char_set.zig
2022-09-17 09:19:00 -07:00

41 lines
927 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(*CharSet, c.FcCharSetCreate());
}
pub fn destroy(self: *CharSet) void {
c.FcCharSetDestroy(self.cval());
}
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(
*c.struct__FcCharSet,
self,
);
}
pub inline fn cvalConst(self: *const CharSet) *const c.struct__FcCharSet {
return @ptrCast(
*const c.struct__FcCharSet,
self,
);
}
};
test "create" {
const testing = std.testing;
var fs = CharSet.create();
defer fs.destroy();
try testing.expect(!fs.hasChar(0x20));
}