archstat.h
来自「klibc精简化的c程序库」· C头文件 代码 · 共 39 行
H
39 行
#ifndef _KLIBC_ARCHSTAT_H#define _KLIBC_ARCHSTAT_H#include <klibc/stathelp.h>#define _STATBUF_ST_NSEC/* This matches struct stat64 in glibc2.1, hence the absolutely * insane padding around dev_t's. */struct stat { __stdev64 (st_dev); unsigned char __pad1[2]; unsigned long __st_ino; unsigned int st_mode; unsigned int st_nlink; unsigned long st_uid; unsigned long st_gid; __stdev64 (st_rdev); unsigned char __pad3[2]; long long st_size; unsigned long st_blksize; unsigned long long st_blocks; /* Number 512-byte blocks allocated. */ struct timespec st_atim; struct timespec st_mtim; struct timespec st_ctim; unsigned long long st_ino;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?