mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
12 lines
268 B
C
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);
|
|
}
|