archstat.h

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

H
28
字号
#ifndef _KLIBC_ARCHSTAT_H#define _KLIBC_ARCHSTAT_H#include <klibc/stathelp.h>#define _STATBUF_ST_NSECstruct stat {	__stdev64	(st_dev);	ino_t		st_ino;	nlink_t		st_nlink;	mode_t		st_mode;	uid_t 		st_uid;	gid_t 		st_gid;	__stdev64	(st_rdev);	off_t		st_size;	unsigned long  	st_blksize;	unsigned long  	st_blocks;	struct timespec st_atim;	/* Time of last access.  */	struct timespec st_mtim;	/* Time of last modification.  */	struct timespec st_ctim;	/* Time of last status change.  */	unsigned long  	__unused4;	unsigned long  	__unused5;	unsigned long  	__unused6;};#endif

⌨️ 快捷键说明

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