23 lines
372 B
Groff
23 lines
372 B
Groff
SYSTEM CALLS
|
|
fstat - read an inode
|
|
|
|
INVOCATION
|
|
#include <sys/types.h>
|
|
#include <stat.h>
|
|
|
|
fstat( desc, s )
|
|
int desc;
|
|
struct stat *s;
|
|
|
|
EXPLANATION
|
|
Fstat(2) reads the inode for the file descriptor <desc>.
|
|
See stat(2) for a description of the structure pointed to
|
|
by <s>.
|
|
|
|
RESULTS
|
|
0 : Ok.
|
|
-1 : Error.
|
|
|
|
REFERENCES
|
|
stat(2)
|