Files
corelang/os.h
Krzosa Karol 5495f96b3b Clang format
2023-03-28 21:16:10 +02:00

10 lines
168 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;
};