summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2019-09-29LibC: Some build fixes for strange platformsAndreas Kling
2019-09-27LibC: Make div() and ldiv() behave according to the C standardAndreas Kling
2019-09-27LibC: Make system() behave according to POSIXAndreas Kling
2019-09-27LibC: Clear any ungetc()'ed data in fflush()Andreas Kling
2019-09-27LibC: realpath() should assume the buffer is PATH_MAX bytesAndreas Kling
2019-09-23IPv4: Implement socket ioctls SIOCGIFADDR and SIOCSIFADDRAndreas Kling
2019-09-23LibC: Fix warnings in sys/cdefs.h if __BEGIN_DECLS is already definedAndreas Kling
2019-09-22LibC: Fix dumb off-by-two in fgets() :^)Andreas Kling
2019-09-22LibC: ungetc(EOF) should fail (and return EOF)Andreas Kling
2019-09-22LibC: Let's assert in rewind() that fseek()ing to the beginning workedAndreas Kling
2019-09-19IPv4: Support overriding the default TTL (64)Andreas Kling
2019-09-17LibC: Ensure getopt error messages end with a newlineSergey Bugaev
2019-09-14LibC: Implement mkdtemp library functionMauri de Souza Nunes
2019-09-14LibC: Make gettid() cache the thread ID in thread-local-storageAndreas Kling
2019-09-13Kernel: Implement fchdir syscallMauri de Souza Nunes
2019-09-13LibC: Add MAXPATHLEN to limits.hMauri de Souza Nunes
2019-09-12LibC: Pass the environment as third argument to main()Andreas Kling
2019-09-12LibC: Add some missing errno codesAndreas Kling
2019-09-11LibC: fgets() shouldn't stop on '\0'Andreas Kling
2019-09-10LibC: Make sure perror() is consistent about the errno it printsAndreas Kling
2019-09-08LibC: #define errno errnoAndreas Kling
2019-09-07LibC: Add some missing pieces in inttypes.hAndreas Kling
2019-09-07LibC: Make "errno" thread-specificAndreas Kling
2019-09-06LibC: Borrow a slightly more functional getopt()Andreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-05LibDraw: Add emoji support to the Font classSergey Bugaev
2019-09-02LibC: Support _PC_PATH_MAX in [f]pathconfConrad Pankoff
2019-08-26LibThread: Move CLock to LibThread::LockSergey Bugaev
2019-08-25LibC: Add realpathRok Povsic
2019-08-24LibC: Fix strtol() handling of invalid charactersAndreas Kling
2019-08-19LibC: Write to the dbg() every time we perror() in userspaceAndreas Kling
2019-08-18Kernel: Add framebuffer ioctls; wrap raw ioctls with a C APIConrad Pankoff
2019-08-18LibC: Move duplicated winsize struct definition into ioctl_numbers.hConrad Pankoff
2019-08-17LibC: Fix strtol() not populating `endptr' for valid stringsAndreas Kling
2019-08-17LibC: Implement wait()Sergey Bugaev
2019-08-17Kernel+LibC+Userland: Support mounting other kinds of filesystemsSergey Bugaev
2019-08-17Kernel: Added unmount ability to VFSJesse Buhagiar
2019-08-15Kernel+LibC: Add get_process_name() syscallAndreas Kling
2019-08-15LibC: Fix clang-tidy warning about else-after-return in errno handlingAndreas Kling
2019-08-12Kernel+LibC+crash: Add mprotect() syscallAndreas Kling
2019-08-10AK: Add a basic URL class to help us handle URL'sAndreas Kling
2019-08-05Kernel+LibC: Support passing O_CLOEXEC to pipe()Sergey Bugaev
2019-08-04LibC: Define SIZE_MAXConrad Pankoff
2019-08-02Kernel: mount system call (#396)Jesse
2019-08-01Kernel+LibC: A lot of the signal handling code was off-by-one.Andreas Kling
2019-08-01LibC: In fgetc(), fread() will never return < 0.Andreas Kling
2019-07-29Kernel+AK: Remove AK/StdLibExtras.cpp, moving kernel stuff to Kernel/.Andreas Kling
2019-07-29Kernel+ProcessManager: Let processes have an icon and show it in the table.Andreas Kling
2019-07-25LibC: Don't clobber errno in free().Andreas Kling
2019-07-25LibC: Make sure we always return the intended errno from execvpe().Andreas Kling