Luna/libc/include/bits/struct_stat.h
apio 13c9caa856
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add stat() + fstat()
2023-04-10 19:56:03 +02:00

19 lines
268 B
C

/* bits/struct_stat.h: The stat structure. */
#ifndef _BITS_STRUCT_STAT_H
#define _BITS_STRUCT_STAT_H
#include <sys/types.h>
struct stat
{
ino_t st_ino;
mode_t st_mode;
nlink_t st_nlink;
uid_t st_uid;
gid_t st_gid;
off_t st_size;
};
#endif