summaryrefslogtreecommitdiff
path: root/userland/libc/include/stdlib.h
AgeCommit message (Collapse)Author
2024-12-15libc: Add setenv/getenvAnton Kling
2024-10-02libc: Add faster scandir function(scandir_sane).Anton Kling
This function is significantly faster due to not requiring memory allocations for each directory entry. Now they are instead just allocated as a large chunk. This function is not compatible with scandir since the cleanup of both function will be different. With this a new function scandir_sane_free has also been added. Besides having a function(like scandir) that forces the programmer to implement their own cleanup procedure that is anymore complicated than a simple free() call is absurd.
2024-04-17LibC: Add more functions that support "long long" integersAnton Kling
2023-11-22Meta: Cleanup of header files such that they are partially sharedAnton Kling
The /include directory contains definitons that both the kernel and libc need to be in sync.
2023-10-22Move everything into a new repo.Anton Kling