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.

spawnPath

Creates a child process.

argv[0] is the file path of the program to execute, relative to dir. It is always treated as a file path, even if it does not contain '/'.

process.spawnPath
pub fn spawnPath(io: Io, dir: Io.Dir, options: SpawnOptions) SpawnError!Child

File

lib/std/process.zig:459

Code

pub fn spawnPath(io: Io, dir: Io.Dir, options: SpawnOptions) SpawnError!Child {
    return io.vtable.processSpawnPath(io.userdata, dir, options);
}