41 lines
1.3 KiB
Groff
41 lines
1.3 KiB
Groff
. \" Manual Seite fuer fexecle
|
|
. \" @(#)fexecle.3 1.1
|
|
. \"
|
|
.if t .ds a \v'-0.55m'\h'0.00n'\z.\h'0.40n'\z.\v'0.55m'\h'-0.40n'a
|
|
.if t .ds o \v'-0.55m'\h'0.00n'\z.\h'0.45n'\z.\v'0.55m'\h'-0.45n'o
|
|
.if t .ds u \v'-0.55m'\h'0.00n'\z.\h'0.40n'\z.\v'0.55m'\h'-0.40n'u
|
|
.if t .ds A \v'-0.77m'\h'0.25n'\z.\h'0.45n'\z.\v'0.77m'\h'-0.70n'A
|
|
.if t .ds O \v'-0.77m'\h'0.25n'\z.\h'0.45n'\z.\v'0.77m'\h'-0.70n'O
|
|
.if t .ds U \v'-0.77m'\h'0.30n'\z.\h'0.45n'\z.\v'0.77m'\h'-.75n'U
|
|
.if t .ds s \(*b
|
|
.if t .ds S SS
|
|
.if n .ds a ae
|
|
.if n .ds o oe
|
|
.if n .ds u ue
|
|
.if n .ds s sz
|
|
.TH FEXECLE 3 "15. Juli 1988" "J\*org Schilling" "Schily\'s LIBRARY FUNCTIONS"
|
|
.SH NAME
|
|
fexecle() \- executes a program
|
|
.SH SYNOPSIS
|
|
.nf
|
|
.B
|
|
fexecle(name, in, out, err, a0, a1, a2, \|.\|.\|. NULL, envptr)
|
|
.B char *name;
|
|
.B FILE *in, *out, *err;
|
|
.B char *a0, *a1, *a2\|.\|.\|.;
|
|
.B char **envptr;
|
|
.fi
|
|
.SH DESCRIPTION
|
|
fexecle() is a variation of fexecve().
|
|
The description for fexecve() also applies to fexecle() except
|
|
for the argument list. fexecle() permits the argument list,
|
|
which is a vector of pointers with a NULL at the end, to be
|
|
constructed as part of the call to fexecle(), rather than as a C
|
|
vector. Thus, in the new program, av[0] will be the same as a0
|
|
in this program, etc.
|
|
.SH RETURNS
|
|
Returns a system error code; fexecle() does not return if it
|
|
succeeds.
|
|
.SH NOTES
|
|
none
|