summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
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
2020-09-06LibC: Avoid generating calls to__cxa_guard_* functions in netdb.cppItamar
2020-09-06LibC: Don't include things required for getopt_long in unistd.hItamar
2020-09-01LibC: Move the static String in getlogin() out of the functionAndreas Kling
2020-09-01LibC: add getopt.h to unistd.hErlend Fagerheim
2020-09-01Build: Add some -Wno-unknown-warning-option flags to CXXFLAGSAndreas Kling
2020-08-31LibC: Partially implement 'freopen'AnotherTest
2020-08-30LibC: Deprecate strcpy(), strncpy(), strcat() and strncat() :^)Sergey Bugaev
2020-08-30LibC: Replace some strncpy() calls with memcpy()Sergey Bugaev
2020-08-30LibC: Misc fixes and improvements in netdbSergey Bugaev
2020-08-30LibC: strcpy a socket address at compile timeSergey Bugaev
2020-08-30Everywhere: Port to String::copy_characters_to_buffer()Sergey Bugaev
2020-08-30LibC: Use AK::String-backed buffers instead of static buffersSergey Bugaev
2020-08-30Kernel+LibC+UE: Implement sleep() via sys$clock_nanosleep()Andreas Kling
2020-08-30Kernel+LibC+UE: Implement usleep() via sys$clock_nanosleep()Andreas Kling
2020-08-27Meta: Force semi-colon after MAKE_AK_NONXXXABLE()Ben Wiederhake