LibC: Add stat structure
This commit is contained in:
parent
d67de70126
commit
0d356c5bbc
|
@ -0,0 +1,29 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
#define st_atime st_atim.tv_sec
|
||||||
|
#define st_ctime st_ctim.tv_sec
|
||||||
|
#define st_mtime st_mtim.tv_sec
|
||||||
|
|
||||||
|
struct stat
|
||||||
|
{
|
||||||
|
dev_t st_dev;
|
||||||
|
ino_t st_ino;
|
||||||
|
mode_t st_mode;
|
||||||
|
nlink_t st_nlink;
|
||||||
|
uid_t st_uid;
|
||||||
|
gid_t st_gid;
|
||||||
|
dev_t st_rdev;
|
||||||
|
off_t st_size;
|
||||||
|
timespec st_atim;
|
||||||
|
timespec st_mtim;
|
||||||
|
timespec st_ctim;
|
||||||
|
blksize_t st_blksize;
|
||||||
|
blkcnt_t st_blocks;
|
||||||
|
};
|
||||||
|
|
||||||
|
__END_DECLS
|
|
@ -5,10 +5,18 @@
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
typedef int32_t id_t;
|
|
||||||
typedef id_t pid_t;
|
using blkcnt_t = int32_t;
|
||||||
typedef id_t uid_t;
|
using blksize_t = int32_t;
|
||||||
typedef id_t gid_t;
|
using dev_t = uint64_t;
|
||||||
typedef uint16_t mode_t;
|
using ino_t = uint32_t;
|
||||||
|
using mode_t = uint16_t;
|
||||||
|
using nlink_t = uint32_t;
|
||||||
|
using off_t = int64_t;
|
||||||
|
using time_t = uint64_t;
|
||||||
|
using id_t = int32_t;
|
||||||
|
using pid_t = id_t;
|
||||||
|
using uid_t = id_t;
|
||||||
|
using gid_t = id_t;
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
|
@ -0,0 +1,13 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
struct timespec
|
||||||
|
{
|
||||||
|
time_t tv_sec;
|
||||||
|
long tv_nsec;
|
||||||
|
};
|
||||||
|
|
||||||
|
__END_DECLS
|
Loading…
Reference in New Issue