MentOS
0.8.0
The Mentoring Operating System
|
Stat functions. More...
Functions | |
int | sys_stat (const char *path, stat_t *buf) |
Stat the file at the given path. More... | |
int | sys_fstat (int fd, stat_t *buf) |
Retrieves information about the file at the given location. More... | |
Stat functions.
int sys_fstat | ( | int | fd, |
stat_t * | buf | ||
) |
Retrieves information about the file at the given location.
fd | The file descriptor of the file that is being inquired. |
buf | A structure where data about the file will be stored. |
int sys_stat | ( | const char * | path, |
stat_t * | buf | ||
) |
Stat the file at the given path.
path | Path to the file for which we are retrieving the statistics. |
buf | Buffer where we are storing the statistics. |