summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2019-11-05Kernel: Implement O_DIRECT open() flag to bypass disk cachesAndreas Kling
2019-11-04LibC: Implemented atof()Jesse Buhagiar
2019-11-03POSIX compliance: (most) shell scripts converted to generic shellGeorge Pickering
2019-11-02Kernel+LibC: Implement clock_gettime() and clock_nanosleep()Andreas Kling
2019-10-24LibC: Stop stdio from adding null terminators out of bounds (#685)Vincent Sanders
2019-10-23Kernel: Move E2BIG calculation from Thread to ProcessAndrew Kaster
2019-10-17LibC: Better strtok implementation (string.h)Jonah Alligood
2019-10-17LibC: strtok is now implemented (string.h)Jonah Alligood
2019-10-17LibC: sys_errlist should be const char* constAndreas Kling
2019-10-16LibC: Remove debug spam in gethostbyname()Andreas Kling
2019-10-15LibC: syslog and lots of compat stuff for itCalvin Buckley
2019-10-13Kernel: Use word-sized entropy as much as possible in syscallCalvin Buckley
2019-10-13LibC: add arc4random* using new getrandom syscallCalvin Buckley
2019-10-13LibC: Add some wchar functionsCalvin Buckley
2019-10-13LibC: Add missing u_* typedefs (u_char/u_short)Calvin Buckley
2019-10-12LibC: Add readdir_r for re-entrant directory reading (#648)Calvin Buckley
2019-10-12LibC: Have perror() show the input string on the debugger as wellAndreas Kling
2019-10-11Libc: make library internal includes come from private include namespaceVincent Sanders
2019-10-09LibC: Add a missing mbstowcs() declarationSergey Bugaev
2019-10-04LibC: unistd.h should provide SEEK_SET etc. if stdio.h is not included (#629)Vincent Sanders
2019-10-03LibC: Implement dirname() and basename()Sergey Bugaev
2019-10-03LibC: Misc additionsSergey Bugaev
2019-10-02Kernel: Add SIOCGIFHWADDR ioctl to get the MAC address of an adapterAndreas Kling
2019-10-01AK: Remove empty files JsonArray.cpp and JsonObject.cppAndreas Kling
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