Luna/libc/include/bits/getdents.h
apio 0847cfcb65
All checks were successful
continuous-integration/drone/push Build is passing
kernel: Add a getdents() syscall
2023-03-28 21:28:56 +02:00

15 lines
225 B
C

/* bits/getdents.h: Definitions used for the getdents() system call. */
#ifndef _BITS_GETDENTS_H
#define _BITS_GETDENTS_H
#include <sys/types.h>
typedef struct
{
ino_t inode;
char name[129];
} luna_dirent;
#endif