archstat.h

来自「klibc精简化的c程序库」· C头文件 代码 · 共 34 行

H
34
字号
#ifndef _KLIBC_ARCHSTAT_H#define _KLIBC_ARCHSTAT_H#define _STATBUF_ST_NSECstruct stat {	unsigned int		st_dev;	unsigned int		st_pad0[3]; /* Reserved for st_dev expansion */	unsigned long		st_ino;	mode_t			st_mode;	nlink_t			st_nlink;	uid_t			st_uid;	gid_t			st_gid;	unsigned int		st_rdev;	unsigned int		st_pad1[3]; /* Reserved for st_rdev expansion */	off_t			st_size;	struct timespec		st_atim;	struct timespec		st_mtim;	struct timespec		st_ctim;	unsigned int		st_blksize;	unsigned int		st_pad2;	unsigned long		st_blocks;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?