|
execlp(3) -- execute a file
|
The exec family of functions replaces the current process image with a new process image. The functions described in this manual page are front-ends for the function execve(2). (See the manual page fo... |
exect(3) -- execute a file
|
The exec family of functions replaces the current process image with a new process image. The functions described in this manual page are front-ends for the function execve(2). (See the manual page fo... |
|
execv(3) -- execute a file
|
The exec family of functions replaces the current process image with a new process image. The functions described in this manual page are front-ends for the function execve(2). (See the manual page fo... |
execvp(3) -- execute a file
|
The exec family of functions replaces the current process image with a new process image. The functions described in this manual page are front-ends for the function execve(2). (See the manual page fo... |
exit(3) -- perform normal program termination
|
exit() terminates a process. The status values EXIT_SUCCESS and EXIT_FAILURE can be used to indicate successful and unsuccessful termination, respectively. Before termination it performs the following... |
exp(3) -- exponential, logarithm, power functions
|
The exp() function computes the exponential value of the given argument x. The expm1() function computes the value exp(x)-1 accurately even for tiny argument x. The log() function computes the value o... |
expf(3) -- exponential, logarithm, power functions
|
The exp() function computes the exponential value of the given argument x. The expm1() function computes the value exp(x)-1 accurately even for tiny argument x. The log() function computes the value o... |
expm1(3) -- exponential, logarithm, power functions
|
The exp() function computes the exponential value of the given argument x. The expm1() function computes the value exp(x)-1 accurately even for tiny argument x. The log() function computes the value o... |
expm1f(3) -- exponential, logarithm, power functions
|
The exp() function computes the exponential value of the given argument x. The expm1() function computes the value exp(x)-1 accurately even for tiny argument x. The log() function computes the value o... |
fabs(3) -- floating-point absolute value function
|
The fabs() and fabsf() functions compute the absolute value of a floating-point number x. |
fabsf(3) -- floating-point absolute value function
|
The fabs() and fabsf() functions compute the absolute value of a floating-point number x. |
fclose(3) -- close a stream
|
The fclose() function dissociates the named stream from its underlying file or set of functions. If the stream was being used for output, any buffered data is written first, using fflush(3). |
fdopen(3) -- stream open functions
|
The fopen() function opens the file whose name is the string pointed to by path and associates a stream with it. The argument mode points to a string beginning with one of the following sequences (Add... |
feof(3) -- check and reset stream status
|
The function clearerr() clears the end-of-file and error indicators for the stream pointed to by stream. The function feof() tests the end-of-file indicator for the stream pointed to by stream, return... |
ferror(3) -- check and reset stream status
|
The function clearerr() clears the end-of-file and error indicators for the stream pointed to by stream. The function feof() tests the end-of-file indicator for the stream pointed to by stream, return... |