From 32c3aca52f89d6e550c3d11322797fc0c9189fae Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 25 Mar 2023 02:08:33 +0200 Subject: [PATCH] LibC: add dirent.h --- libc/include/dirent.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libc/include/dirent.h diff --git a/libc/include/dirent.h b/libc/include/dirent.h new file mode 100644 index 00000000..2d6966f0 --- /dev/null +++ b/libc/include/dirent.h @@ -0,0 +1,15 @@ +#pragma once + +#include + +__BEGIN_DECLS + +struct DIR; + +struct dirent +{ + ino_t d_ino; + char d_name[]; +}; + +__END_DECLS \ No newline at end of file