summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2020-11-27LibJS: Hook up Regex<ECMA262> to RegExpObject and implement `test()'AnotherTest
2020-11-27LibRegex: Add a regular expression libraryEmanuel Sprung
2020-11-24LibPthread: Implement pthread_once()Sergey Bugaev
2020-11-16LibC: Notify UE at the start of free() instead of at the endAndreas Kling
2020-11-15LibC: Ensure mkstemp generates a pattern 6 characters in lengthBrendan Coles
2020-11-14LibC: Move some of malloc's data structures into mallocdefs.hAndreas Kling
2020-11-14LibC: strtok_r() should not go past the last tokenAndreas Kling
2020-11-14LibC: Fix OOB access in strerror() with invalid inputAndreas Kling
2020-11-13LibC: Adjust malloc size classes to ensure 8-byte aligned pointersAndreas Kling
2020-11-10Kernel+LibC: Add adjtime(2)Nico Weber
2020-11-10LibC: Add POSIX1 minimum limits to limits.hBrendan Coles
2020-11-08UserspaceEmulator+LibC: Have UE notice realloc() and update accountingAndreas Kling
2020-11-08LibC: Add two little assertions in malloc() and malloc_size()Andreas Kling
2020-11-01Kernel+LibC: Don't allow a directory to become a subdirectory of itselfAndreas Kling
2020-10-30LibC: Use dbgln() in setlocale()Andreas Kling
2020-10-29Userland+LibC: Add "kill -l" to show all known signal names/numbersAndreas Kling
2020-10-29LibC: Use NSIG instead of hard-coding 32 as the signal countAndreas Kling
2020-10-29CMake: Use CONFIGURE_DEPENDS in existing globs.asynts
2020-10-29LibC: Move getsignalbyname() helper from Userland/kill into LibCAndreas Kling
2020-10-22LibC: Add NAME_MAX (255)Andreas Kling
2020-10-20LibC: Fix a warning when building LibC with -O2Andreas Kling
2020-10-15LibC: Make difftime a functionStephen Gregoratto
2020-10-14LibC: We still need to use NULL (not nullptr) in C headersAndreas Kling
2020-10-13Style: Remove uses of NULL, substituting nullptrMatthew L. Curry
2020-10-12Kernel+LibC: Use uintptr_t as the main type in the syscall interfaceAndreas Kling
2020-10-04AK: Make the return type of dbgputstr consistent.asynts
2020-10-03LibC: Remove unnecessary fallthrough comments.Emanuele Torre
2020-10-02Everywhere: Fix typosNico Weber
2020-09-27LibC: Remove an unneeded string.h include in ctype.h/cppBenoit Lormeau
2020-09-27LibC: Add SCM_RIGHTS to sockets.h and caddr_t to types.hLuke
2020-09-27LibC: Make isalum/isalpha/etc. functions instead of macrosLuke
2020-09-27LibC: Add ss_family to sockaddr_storageLuke
2020-09-27LibC: Add missing utmp backwards compatibility hacks and user/dead process ma...Luke
2020-09-27Kernel: Implement _SC_OPEN_MAXLuke
2020-09-27LibC: Made mbtowc return int instead of size_tLuke
2020-09-27LibC: Add FIXME for vsscanfLuke
2020-09-27LibC: Add some missing netinet macros required by OpenSSHLuke
2020-09-27LibC: Add SSIZE_MAX limitLuke
2020-09-27LibC: Include cdefs.h in getopt.hLuke
2020-09-27LibC: Add EPFNOSUPPORT error numberLuke
2020-09-27LibC: Add paths.h with some default mail directory for nowLuke
2020-09-25Meta+LibC through LibHTTP: Make clang-format-10 cleanBen Wiederhake
2020-09-17Kernel+LibC+UserspaceEmulator: Add SO_TIMESTAMP, and cmsg definitionsNico Weber
2020-09-17LibC: Convert SO_ constants to enumNico Weber
2020-09-17Kernel+LibC+UserspaceEmulator: Mostly add recvmsg(), sendmsg()Nico Weber
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-12LibC: Avoid write-back of unused valueBen Wiederhake
2020-09-12LibC: Don't advertise wrong functionsBen Wiederhake
2020-09-09Kernel+LibC+UE: Introduce SIGINFO (generated with ^T)Andreas Kling
2020-09-06LibC: Add settimeofdayNico Weber