aboutsummaryrefslogtreecommitdiff
path: root/src/base/fs/walk.c
AgeCommit message (Collapse)Author
2021-12-05Chore: updated fs·walk to use new data structuresNicholas Noll
Completes the port to our standard library (up to malloc).
2021-12-05feat(huge): huge refactor (in progress).Nicholas Noll
Commented out libc includes to uncover all explicit dependencies. A large fraction has now been ported over (no testing). I did not port over the command line tools, such as the rc shell. These will be done independently - as of now I just want the library to stand independent. Compilation currently fails due to the lack of math functions.
2021-12-05Chore: simplified allocator interfaces.Nicholas Noll
I was never happy with the allocator/reallocator split. It was originally designed to accomodate things like arenas that don't free. But the majority of the time you don't care about this.
2021-12-05Feat: basic string and memory functionsNicholas Noll
Continue filling out the basic standard lib functions. Included prototypes of the str* and mem* families. Plan to add e(str|mem) and n(str|mem) variants as well.
2021-12-04Chore(REMOVE): finished deprecation of old io functions.Nicholas Noll
The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over.
2021-11-15Fix: Qsort had bad macro captureNicholas
2021-11-12chore: simplified organizational structurelaptopNicholas