|
popen(3) -- process I/O
|
The popen() function ``opens'' a process by creating an IPC connection, forking, and invoking the shell. Historically, popen was implemented with a unidirectional pipe; hence many implementations of... |
pow(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... |
|
powf(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... |
printf(3) -- formatted output conversion
|
The printf() family of functions produces output according to a format as described below. printf() and vprintf() write output to stdout, the standard output stream; fprintf() and vfprintf() write out... |
psignal(3) -- system signal messages
|
The psignal() function locates the descriptive message string for the given signal number sig and writes it to the standard error. If the argument s is non-NULL it is written to the standard error fil... |
putc(3) -- output a character or word to a stream
|
The fputc() function writes the character c (converted to an ``unsigned char'') to the output stream pointed to by stream. putc() acts essentially identically to fputc(), but is a macro that expands... |
putchar(3) -- output a character or word to a stream
|
The fputc() function writes the character c (converted to an ``unsigned char'') to the output stream pointed to by stream. putc() acts essentially identically to fputc(), but is a macro that expands... |
putchar_unlocked(3) -- output a character or word to a stream
|
The fputc() function writes the character c (converted to an ``unsigned char'') to the output stream pointed to by stream. putc() acts essentially identically to fputc(), but is a macro that expands... |
putc_unlocked(3) -- output a character or word to a stream
|
The fputc() function writes the character c (converted to an ``unsigned char'') to the output stream pointed to by stream. putc() acts essentially identically to fputc(), but is a macro that expands... |
putenv(3) -- environment variable functions
|
These functions set, unset and fetch environment variables from the host environment list. For compatibility with differing environment conventions, the given arguments name and value may be appended ... |
puts(3) -- output a line to a stream
|
The function fputs() writes the string pointed to by str to the stream pointed to by stream. The function puts() writes the string str, and a terminating newline character, to the stream stdout. |
putw(3) -- output a character or word to a stream
|
The fputc() function writes the character c (converted to an ``unsigned char'') to the output stream pointed to by stream. putc() acts essentially identically to fputc(), but is a macro that expands... |
putwc(3) -- output a wide-character to a stream
|
The fputwc() function writes the wide-character wc to the output stream pointed to by stream. putwc() acts essentially identically to fputwc(), but is a macro that expands in-line. It may evaluate str... |
putwchar(3) -- output a wide-character to a stream
|
The fputwc() function writes the wide-character wc to the output stream pointed to by stream. putwc() acts essentially identically to fputwc(), but is a macro that expands in-line. It may evaluate str... |
pwcache(3) -- cache password and group entries
|
The user_from_uid() function returns the user name associated with the argument uid. The user name is cached so that multiple calls with the same uid do not require additional calls to getpwuid(3). If... |