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.

sendfile

linux.sendfile
pub fn sendfile(outfd: fd_t, infd: fd_t, offset: ?*off_t, count: usize) usize

File

lib/std/os/linux.zig:2612

Code

pub fn sendfile(outfd: fd_t, infd: fd_t, offset: ?*off_t, count: usize) usize {
    return syscall4(
        if (@hasField(SYS, "sendfile64")) .sendfile64 else .sendfile,
        @as(u32, @bitCast(outfd)),
        @as(u32, @bitCast(infd)),
        @intFromPtr(offset),
        count,
    );
}