Function execvpeZ [src]
This function also uses the PATH environment variable to get the full path to the executable.
If file is an absolute path, this is the same as execveZ.
Prototype
pub fn execvpeZ( file: [*:0]const u8, argv_ptr: [*:null]const ?[*:0]const u8, envp: [*:null]const ?[*:0]const u8, ) ExecveError Parameters
file: [*:0]const u8argv_ptr: [*:null]const ?[*:0]const u8envp: [*:null]const ?[*:0]const u8 Source
pub fn execvpeZ(
file: [*:0]const u8,
argv_ptr: [*:null]const ?[*:0]const u8,
envp: [*:null]const ?[*:0]const u8,
) ExecveError {
return execvpeZ_expandArg0(.no_expand, file, argv_ptr, envp);
}