stat_tmpl.h

来自「zlib压缩原码」· C头文件 代码 · 共 19 行

H
19
字号
static inline int STAT(___zlibc_l)(const char *file_name, struct KSTAT *buf){#ifdef HAVE___XSTAT  return STAT(zlib_real_lx)(ZLIB_STAT_VERSION, file_name, (struct USTAT *) buf);#else  return STAT(zlib_real_l)(file_name, buf);   #endif}static inline int STAT(___zlibc_)(const char *file_name, struct KSTAT *buf){#ifdef HAVE___XSTAT  return STAT(zlib_real_x)(ZLIB_STAT_VERSION, file_name, (struct USTAT *)  buf);#else  return STAT(zlib_real_)(file_name, buf );#endif}

⌨️ 快捷键说明

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