mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
41 lines
927 B
Zig
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));
|
|
}
|