A port of the libxcvt 0.1.2 to Zig.
Zig Version: 0.13.0
const cvt = @import("cvt");
test {
const mode = cvt.compute(.{
.width = 800,
.height = 600,
.refresh_rate = 60.0,
});
std.debug.print("MODE = {}\n", .{mode});
}