XSI Single Process option group.
More...
|
| #define | P_tmpdir "/tmp" |
| | Pathname of the directory for temporary files.
|
| |
|
| char * | ctermid (char *s) |
| | Maximum number of streams that one process can have open at one time.
|
| |
| int | pclose (FILE *stream) |
| | Close a pipe stream.
|
| |
| FILE * | popen (const char *command, const char *type) |
| | Create a pipe to a process.
|
| |
| char * | tempnam (const char *dir, const char *pfx) |
| | Generate a pathname for a temporary file (obsolescent).
|
| |
| int | putenv (char *string) |
| | Add or change an environment variable (XSI extension).
|
| |
| int | gettimeofday (struct timeval *tv, void *tz) |
| | Get the current time with microsecond resolution.
|
| |
| char * | crypt (const char *key, const char *salt) |
| | Encrypt a password string (XSI extension, not recommended for new code).
|
| |
| void | encrypt (char block[64], int edflag) |
| | Encrypt or decrypt a 64-bit block using DES (XSI extension).
|
| |
| long | gethostid (void) |
| | Get a unique identifier for the host system (XSI extension).
|
| |
XSI Single Process option group.
Covers gethostid(), gettimeofday(), putenv(), and related XSI-mandatory single-process functions.
◆ P_tmpdir
◆ crypt()
| char * crypt |
( |
const char * |
key, |
|
|
const char * |
salt |
|
) |
| |
◆ ctermid()
| char * ctermid |
( |
char * |
s | ) |
|
◆ encrypt()
| void encrypt |
( |
char |
block[64], |
|
|
int |
edflag |
|
) |
| |
◆ gethostid()
◆ gettimeofday()
| int gettimeofday |
( |
struct timeval * |
tv, |
|
|
void * |
tz |
|
) |
| |
◆ pclose()
| int pclose |
( |
FILE * |
stream | ) |
|
◆ popen()
| FILE * popen |
( |
const char * |
command, |
|
|
const char * |
type |
|
) |
| |
◆ putenv()
| int putenv |
( |
char * |
string | ) |
|
◆ tempnam()
| char * tempnam |
( |
const char * |
dir, |
|
|
const char * |
pfx |
|
) |
| |