-

Changes

Jump to: navigation, search

Functions HI-TECH C EXECL

667 bytes added, 18:57, 31 July 2017
Created page with "<strong>EXECL, EXECV</strong> ==SYNOPSIS== #include <sys.h> int execl(char * name, pname, ...) int execv(char * name, ppname) ==DESCRIPTION== <strong>Execl</strong>()..."
<strong>EXECL, EXECV</strong>
==SYNOPSIS==

#include <sys.h>

int execl(char * name, pname, ...)
int execv(char * name, ppname)


==DESCRIPTION==
<strong>Execl</strong>() and <strong>execv</strong>() load and execute the program specified by the string name. <strong>Execl</strong>() takes the arguments
for the program from the zero-terminated list of string
arguments. <strong>Execv</strong>() is passed a pointer to an array of
strings. The array must be zero-terminated. If the
named program is found and can be read, the call does
not return. Thus any return from these routines may be
treated as an error.

==SEE ALSO==

spawnl, spawnv, system

Navigation menu