📄 archstat.h
字号:
#ifndef _KLIBC_ARCHSTAT_H#define _KLIBC_ARCHSTAT_H#include <klibc/stathelp.h>#define _STATBUF_ST_NSEC/* This matches struct stat64 in glibc2.1. */struct stat { __stdev64 (st_dev); /* Device. */ unsigned long long st_ino; /* File serial number. */ unsigned int st_mode; /* File mode. */ unsigned int st_nlink; /* Link count. */ unsigned int st_uid; /* User ID of the file's owner. */ unsigned int st_gid; /* Group ID of the file's group. */ __stdev64 (st_rdev); /* Device number, if device. */ unsigned short int __pad2; long long st_size; /* Size of file, in bytes. */ long st_blksize; /* Optimal block size for I/O. */ long long st_blocks; /* Number 512-byte blocks allocated. */ 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 int __unused4; unsigned long int __unused5;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -