check_stat1.c.svn-base
来自「我们自己开发的一个OSEK操作系统!不知道可不可以?」· SVN-BASE 代码 · 共 17 行
SVN-BASE
17 行
#include <sys/types.h>#include <sys/stat.h>#include <unistd.h>#include <stdio.h>#include <stdlib.h>int main (void){ struct stat buf; if (stat (".", &buf) != 0 || !S_ISDIR (buf.st_mode)) abort (); printf ("pass\n"); exit (0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?