archstat.h
来自「klibc精简化的c程序库」· C头文件 代码 · 共 41 行
H
41 行
#ifndef _KLIBC_ARCHSTAT_H#define _KLIBC_ARCHSTAT_H#define _STATBUF_ST_NSEC/* * This matches struct stat64 in glibc2.1, hence the absolutely insane * amounts of padding around dev_t's. The memory layout is the same as of * struct stat of the 64-bit kernel, which makes this one of the sanest * 32-bit struct stats. */struct stat { unsigned int st_dev; unsigned long st_pad0[3]; /* Reserved for st_dev expansion */ unsigned long long st_ino; mode_t st_mode; nlink_t st_nlink; uid_t st_uid; gid_t st_gid; unsigned int st_rdev; unsigned long st_pad1[3]; /* Reserved for st_rdev expansion */ long long st_size; struct timespec st_atim; struct timespec st_mtim; struct timespec st_ctim; unsigned long st_blksize; unsigned long st_pad2; long long st_blocks;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?