summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2020-03-11Userland: Set the mask of a network adapter with ifconfig (#1388)Marios Prokopakis
2020-03-08LibC: Fix a bug involving miscalculating week counts of last yearhowar6hill
2020-03-08LibC: Reimplement asctime() in terms of strftime()howar6hill
2020-03-08Userspace: Add missing #includes now that AK/StdLibExtras.h is smallerAndreas Kling
2020-03-08AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*)Andreas Kling
2020-03-07LibWeb: Move everything into the Web namespaceAndreas Kling
2020-03-06LibC: Fix a indentation problem in time.cpphowar6hill
2020-03-06LibC: Fix crash in free() now that mprotect() works correctlyAndreas Kling
2020-03-06LibC: Implement time formatting functions, partially support timezonehowar6hill
2020-03-02AK: Move the wildcard-matching implementation to StringUtilshowar6hill
2020-02-28LibC: Move shbuf_* implementations to serenity.cppAndreas Kling
2020-02-28Kernel: Merge the shbuf_get_size() syscall into shbuf_get()Andreas Kling
2020-02-28LibC: Move shbuf_* API's to <serenity.h>Andreas Kling
2020-02-28Kernel+LibC: Rename shared buffer syscalls to use a prefixAndreas Kling
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-22LibC: Implement strchrnul()Shannon Booth
2020-02-21Toolchain: Build demangling into LibC except during toolchain buildAndreas Kling
2020-02-20LibC: Implement crappy version of pread()Andreas Kling
2020-02-20LibC: Stub out getpass()Andreas Kling
2020-02-20LibC: Add h_errno and stub out getservbyname()Andreas Kling
2020-02-20LibC: Add inet_ntoa()Andreas Kling
2020-02-20Kernel+LibC: Add SO_REUSEADDR macroAndreas Kling
2020-02-20LibC: Add an empty <netinet/tcp.h>Andreas Kling
2020-02-20LibC: Add some missing macros to inttypes.hAndreas Kling
2020-02-19LibC: Don't assert on fflush(nullptr)Andreas Kling
2020-02-19LibC: Add hack implementation of gmtime_r() matching gmtime()Andreas Kling
2020-02-19LibC: Always inline the printf character helpersAndreas Kling
2020-02-19LibC: Fix big endian definitionsLiav A
2020-02-18LibC: Statically allocate allocatorsSergey Bugaev
2020-02-16AK: Add basic Traits for RefPtrAndreas Kling
2020-02-16malloc: Use 64KB blocks (instead of 4KB)Andreas Kling
2020-02-16Kernel+LibC: Allow sys$mmap() callers to specify address alignmentAndreas Kling
2020-02-16Revert "LibC: Implement isblank()"Andreas Kling
2020-02-14AK: Add a forward declaration headerAndreas Kling
2020-02-11LibC: Add localtime_r()Andreas Kling
2020-02-11Revert "LibC: Remove isfoo() declarations from ctype.h"Andreas Kling
2020-02-11LibC: Remove isfoo() declarations from ctype.hAndreas Kling
2020-02-10Kernel+LibC: Merge sys$stat() and sys$lstat()Andreas Kling
2020-02-09LibC: Apply a change for the Bootstrapper environmentLiav A
2020-02-08Net: Add a basic sys$shutdown() implementationAndreas Kling
2020-02-05LibC: Add posix_openpt(), grantpt() and unlockpt()Andreas Kling
2020-02-05LibC: Move struct stat to sys/stat.hjoshua stein
2020-02-05Kernel+LibC: Add sys$waitid(), and make sys$waitpid() wrap itSergey Bugaev
2020-02-05Kernel+LibC: Add some Unix signal types & definitionsSergey Bugaev
2020-02-05LibC: Fix misplaced braceSergey Bugaev
2020-02-03LibC: Add byteswap.h, forwarding bswap_N to GCC builtinsKenzi Jeanis
2020-02-03LibC: Copy the net directory into /usr/include during buildKenzi Jeanis
2020-02-03LibC: Implement getsid()Sergey Bugaev
2020-02-03LibC: Move waitpid() to sys/wait.hSergey Bugaev
2020-02-03LibC: Implement isblank()Sergey Bugaev