ish/tests/getdents.c
2017-06-20 18:21:32 -07:00

12 lines
268 B
C

#define _GNU_SOURCE
#include <unistd.h>
#include <fcntl.h>
#include <sys/syscall.h>
int main() {
int fd = open(".", O_RDONLY | O_DIRECTORY);
char buf[100];
int count = syscall(SYS_getdents64, fd, buf, sizeof(buf));
write(STDOUT_FILENO, buf, count);
}