Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

trunctfhf2.zig

File

lib/compiler_rt/trunctfhf2.zig

Code

const compiler_rt = @import("../compiler_rt.zig");
const symbol = @import("../compiler_rt.zig").symbol;
const truncf = @import("./truncf.zig").truncf;

comptime {
    symbol(&__trunctfhf2, "__trunctfhf2");
    if (compiler_rt.want_ppc_abi) {
        symbol(&__trunctfhf2, "__trunckfhf2");
    }
}

pub fn __trunctfhf2(a: f128) callconv(.c) compiler_rt.F16T(f128) {
    return @bitCast(truncf(f16, f128, a));
}