io: implement pre- and post-order directory traversal for windows

This commit is contained in:
2025-02-12 22:11:18 +00:00
parent bdbae88e87
commit 8862cdf2e0
5 changed files with 368 additions and 11 deletions

View File

@@ -24,6 +24,8 @@ BLUE_API bool b_path_exists(const b_path *path);
BLUE_API bool b_path_is_file(const b_path *path);
BLUE_API bool b_path_is_directory(const b_path *path);
BLUE_API const char *b_path_ptr(const b_path *path);
BLUE_API b_path *b_path_retain(b_path *path);
BLUE_API void b_path_release(b_path *path);