27 lines
705 B
C
27 lines
705 B
C
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
#include "test_helpers.h"
|
|
|
|
int main(void) {
|
|
printf("sizeof(struct stat): %ld\n", sizeof(struct stat));
|
|
|
|
struct stat buf;
|
|
|
|
int stat_status = stat("unistd/stat.c", &buf);
|
|
ERROR_IF(stat, stat_status, == -1);
|
|
UNEXP_IF(stat, stat_status, != 0);
|
|
|
|
printf("st_size: %lu\n", buf.st_size);
|
|
printf("st_blksize: %lu\n", buf.st_blksize);
|
|
printf("st_dev: %lu\n", buf.st_dev);
|
|
printf("st_ino: %lu\n", buf.st_ino);
|
|
printf("st_mode: %o\n", buf.st_mode);
|
|
printf("st_nlink: %lu\n", buf.st_nlink);
|
|
printf("st_uid: %u\n", buf.st_uid);
|
|
printf("st_gid: %u\n", buf.st_gid);
|
|
}
|