CONFSTRSection: Linux Programmer's Manual (3)Updated: 1993-04-17 |
CONFSTRSection: Linux Programmer's Manual (3)Updated: 1993-04-17 |
#define _POSIX_C_SOURCE 2 or #define _XOPEN_SOURCE #include <unistd.h> size_t confstr(int name, char *buf, size_t len);
The name argument is the system variable to be queried. The following variables are supported:
If buf is not NULL, and len is not zero, confstr() copies the value of the string to buf truncated to len - 1 characters if necessary, with a null character as termination. This can be detected by comparing the return value of confstr() against len.
If len is zero and buf is NULL, confstr() just returns the value as defined below.
char *pathbuf; size_t n; n = confstr(_CS_PATH,NULL,(size_t)0); if ((pathbuf = malloc(n)) == NULL) abort(); confstr(_CS_PATH, pathbuf, n);