aboutsummaryrefslogtreecommitdiffstats
path: root/dir.h
diff options
context:
space:
mode:
Diffstat (limited to 'dir.h')
-rw-r--r--dir.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/dir.h b/dir.h
deleted file mode 100644
index 7c576b4..0000000
--- a/dir.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef SF_DIR_H
-#define SF_DIR_H
-
-#include <limits.h>
-#include <stdbool.h>
-#include <stddef.h>
-
-#include "wm.h"
-
-/* typedef struct { */
-/* char name[256]; */
-/* bool is_dir; */
-/* } file_entry; */
-
-/* typedef struct { */
-/* char path[PATH_MAX]; */
-/* directory dir; */
-/* size_t cursor; */
-/* file_entry *entries; */
-/* size_t count; */
-/* size_t capacity; */
-/* } dir_stat; */
-
-char *xdirname(char *path);
-char *xbasename(char *path);
-/* directory *dir_read(directory *dir, const char *path); */
-
-/* void dir_free(directory *dir); */
-
-#endif /* SF_DIR_H */