gpower2/src/util.zig

5 lines
97 B
Zig

/// shortcut for ptrCast
pub fn c(comptime T: type, x: anytype) T {
return @ptrCast(T, x);
}