delorie.com/djgpp/doc/libc/libc_339.html
|
search
|
libc.a reference
fpathconf
Syntax
| #include <unistd.h>
long fpathconf(int fd, int name);
|
Description
Returns configuration information on the filesystem that the open file
resides on. See section pathconf. If the filesystem cannot be determined
from the file handle fd (e.g., for character devices),
fpathconf
will return the info for the current drive.
Return Value
The configuration value; for details, see pathconf.
Portability
ANSI/ISO C |
No
|
POSIX |
1003.2-1992; 1003.1-2001
|