diff options
author | David Schleef <ds@schleef.org> | 2001-05-25 23:04:51 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2001-05-25 23:04:51 +0000 |
commit | 55021a78202f4960f5294c55668b400854c7ba65 (patch) | |
tree | 95b5fb98250e38cd2c3e0630ae88f5d902fed848 /test/stat/stat.c | |
parent | 43989bfe8b133c09a0b57a0a4a2249e64f3bc86d (diff) |
Test to check for proper stat mangling.
Diffstat (limited to 'test/stat/stat.c')
-rw-r--r-- | test/stat/stat.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/stat/stat.c b/test/stat/stat.c new file mode 100644 index 000000000..eb99dbc64 --- /dev/null +++ b/test/stat/stat.c @@ -0,0 +1,35 @@ + +#include <sys/stat.h> +#include <stdio.h> + + +int main(int argc,char *argv[]) +{ + struct stat s; + int ret; + + ret = stat("/",&s); + + if(ret<0){ + perror("stat"); + exit(1); + } + + /* The casts are because glibc thinks it's cool */ + printf("device : 0x%x\n",(unsigned int)s.st_dev); + printf("inode : %d\n",(int)s.st_ino); + printf("mode : 0x%x\n",s.st_mode); + printf("nlink : %d\n",s.st_nlink); + printf("uid : %d\n",s.st_uid); + printf("gid : %d\n",s.st_gid); + printf("rdev : 0x%x\n",(unsigned int)s.st_rdev); + printf("size : %ld\n",s.st_size); + printf("blksize : %ld\n",s.st_blksize); + printf("blocks : %ld\n",s.st_blocks); + printf("atime : %ld\n",s.st_atime); + printf("mtime : %ld\n",s.st_mtime); + printf("ctime : %ld\n",s.st_ctime); + + exit(0); +} + |