Files
ghostty/pkg/harfbuzz/version.zig
Mitchell Hashimoto eccd07f009 pkg: replace @cImport with addTranslateC in pkg/
@cImport is going to disappear in Zig 0.17. Its deprecated in Zig 0.16.
Let's remove it now.

Replace @cImport with addTranslateC across pkg/ packages. Each
package now has a c_import.h header that is translated at build
time via addTranslateC and exposed as a "cimport" module import.

Converted packages:
- dcimgui
- fontconfig
- freetype
- glslang
- harfbuzz
- macos
- oniguruma
- opengl
- sentry
- spirv-cross
- wuffs

Omitted:
- gtk4-layer-shell - This has a bit more complexity with how it
  interacts with GTK headers, so I need to consider this a bit more.
- src/ - It'll be cleaner to do this separately.
2026-04-16 21:35:51 -07:00

48 lines
1.1 KiB
Zig

const std = @import("std");
const c = @import("c");
pub const Version = struct {
major: u32,
minor: u32,
micro: u32,
};
/// Returns library version as three integer components.
pub fn version() Version {
var major: c_uint = 0;
var minor: c_uint = 0;
var micro: c_uint = 0;
c.hb_version(&major, &minor, &micro);
return .{ .major = major, .minor = minor, .micro = micro };
}
/// Tests the library version against a minimum value, as three integer components.
pub fn versionAtLeast(vsn: Version) bool {
return c.hb_version_atleast(
vsn.major,
vsn.minor,
vsn.micro,
) > 0;
}
/// Returns library version as a string with three components.
pub fn versionString() [:0]const u8 {
const res = c.hb_version_string();
return std.mem.sliceTo(res, 0);
}
test {
const testing = std.testing;
// Should be able to get the version
const vsn = version();
try testing.expect(vsn.major > 0);
// Should be at least version 1
try testing.expect(versionAtLeast(.{
.major = 1,
.minor = 0,
.micro = 0,
}));
}