fileops: Cleanup
Cleaned up the structure of the whole OS-abstraction layer. fileops.c now contains a set of utility methods for file management used by the library. These are abstractions on top of the original POSIX calls. There's a new file called `posix.c` that contains emulations/reimplementations of all the POSIX calls the library uses. These are prefixed with `p_`. There's a specific posix file for each platform (win32 and unix). All the path-related methods have been moved from `utils.c` to `path.c` and have their own prefix.
Showing
src/path.c
0 → 100644
src/path.h
0 → 100644
src/posix.c
0 → 100644
src/posix.h
0 → 100644
src/unix/posix.h
0 → 100644
src/win32/fileops.c
deleted
100644 → 0
src/win32/posix.c
0 → 100644
src/win32/posix.h
0 → 100644
Please
register
or
sign in
to comment