summaryrefslogtreecommitdiff
path: root/userland/test
AgeCommit message (Collapse)Author
2024-11-28changesAnton Kling
2024-11-22libc: Add case for strtol(l) where base is 0Anton Kling
2024-10-02test: Fix incorrect testAnton Kling
2024-06-27stuffAnton Kling
2024-06-26LibC: Fix regression in printfAnton Kling
printf did not write out anything for %d when the value was zero.
2024-06-26LibC: Fix printf formattingAnton Kling
Previously %02x would not print out padding if the given value was zero.
2024-06-23LibC: Include delim in getdelim if it was seenAnton Kling
2024-04-17LibC: Add more functions that support "long long" integersAnton Kling
2024-04-17LibC: Add memchr()Anton Kling
2023-11-23Kernel/LibC: Add randomfill() syscall.Anton Kling
This syscall aims to fill the given buffer with cryptographically secure random data. If the syscall returns and does not cause a page fault it will **always** have filled the buffer with random data and never gives back any error value.
2023-11-22Test: Add test case for realpath()Anton Kling
2023-11-15LibC: Add getdelim and getlineAnton Kling
2023-11-13LibC: Support negative values in printf for %dAnton Kling
2023-10-31Meta: Fix build scripts to work on debianAnton Kling
2023-10-22Update .gitignore for all programsAnton Kling
2023-10-22Change CC in Makefiles to not use a absolute pathAnton Kling
2023-10-22Move everything into a new repo.Anton Kling