Files
corelang/os.h
Krzosa Karol ed7267a8c8 OS.h
2022-10-09 10:47:38 +02:00

10 lines
172 B
C

const U32 LIST_NO_FLAGS = 0;
const U32 LIST_RECURSE_INTO_DIRS = 1;
struct OS_File_Info{
String relative_path;
String absolute_path;
B32 is_directory;
};