summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC
AgeCommit message (Expand)Author
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-29LibC: Implement `getdtablesize()`Jelle Raaijmakers
2022-03-29LibC: Make prctl() a varargs functionTim Schumacher
2022-03-29LibC: Make wchar size definitions available from stdint.hTim Schumacher
2022-03-28LibC: Fix inttypes.h macros for x86-64 and extend themDaniel Bertalan
2022-03-28LibC: Partially implement __fpendingTim Schumacher
2022-03-27LibC: Fix potential double free in ttyname_r_for_directoryBrian Gianforcaro
2022-03-22LibC: Don't rely on ptsname and ttyname syscallsLiav A
2022-03-22Kernel/TTY: Implement TIOCGPTN ioctl for MasterPTYLiav A
2022-03-20LibC: Automatically append null terminator in vswprintfsafarp
2022-03-19Revert "LibC: Make WEOF a signed value on clang"Tim Schumacher
2022-03-18Everywhere: Deduplicate day/month name constantsLenny Maiorani
2022-03-14Kernel: Sandbox each GPU3DDevice file description into own host contextSahan Fernando
2022-03-13LibC: Expose AK::timing_safe_compare via `timingsafe_memcmp(..)`Brian Gianforcaro
2022-03-13LibC: Use altzone for the current time zone offset during DSTTimothy Flynn
2022-03-09LibC: Add ioctls for VirGLSahan Fernando
2022-03-08LibC: Set `saved_str` to null in strtok_r if no tokens were foundDaniel Bertalan
2022-03-08LibC: Add IPv6 support to inet_ntop and inet_ptonTom
2022-03-06LibC: Remove semicolon in definition of FD_ZEROAlex O'Brien
2022-03-04Kernel: Add support for SA_SIGINFOAli Mohammad Pur
2022-03-02LibCore+LibC: Add wrapper for setenvLucas CHOLLET
2022-03-02LibC: Increase alignment for malloc() BigAllocationBlocks to 16 bytesPeter Ross
2022-03-02LibC: Replace [[gnu::aligned(16)]] with C++ standard alignas(16)Peter Ross
2022-03-02LibC: Set PRI[xX]8/PRI[xX]16 macros to `x` and `X`Peter Ross
2022-03-02LibC: Add TCP_MAXSEG to tcp.hPeter Ross
2022-03-02LibC: Add IN_MULTICAST to in.hPeter Ross
2022-02-28LibC: Define offsetof in stddef.h instead of sys/cdefs.hAndrew Kaster
2022-02-28LibC: Don't export ALWAYS_INLINE from sys/cdefs.hAndrew Kaster
2022-02-28LibC: Add a wrapper for the getrusage syscallLucas CHOLLET
2022-02-20LibC: Do not write value when scanf assignment value is suppressedPeter Ross
2022-02-20LibC: Do not include suppressed assignments in scanf return valuePeter Ross
2022-02-19Kernel: Fixed argument passing for profiling_enable syscallJakub Berkop
2022-02-16LibC: Try to recover gracefully from failed LookupServer requestsAndreas Kling
2022-02-12LibC: Stub out fmemopen()Ali Mohammad Pur
2022-02-11LibELF: Implement support for DT_RELR relative relocationsDaniel Bertalan
2022-02-09LibC: Remove debug spam in getaddrinfo()Andreas Kling
2022-02-09LibC+Kernel: Remove global variable use from snprintf and fprintfAndrew Kaster
2022-02-05LibRegex+LibJS: Avoid searching for more than one match in JS RegExpsAli Mohammad Pur
2022-02-03LibC: Add IN6_IS_ADDR_LINKLOCAL to in.hBrian Gianforcaro
2022-01-26LibRegex: Implement ECMA262 multiline matching without splitting linesAli Mohammad Pur
2022-01-25LibTimeZone+Userland: Rename current_time_zone to system_time_zoneTimothy Flynn
2022-01-25LibC: Ensure tzname and related fields are intializedTimothy Flynn
2022-01-25LibC: Revert localtime_r to use time zone information set by tzsetTimothy Flynn
2022-01-25LibC: Invoke tzset from time functions required to update time zone infoTimothy Flynn
2022-01-25LibC: Implement tzset with time zone awareness in accordance with POSIXTimothy Flynn
2022-01-25LibC: Define the POSIX TZNAME_MAX limitTimothy Flynn
2022-01-25AK: Standardize the behaviour of GenericLexer::consume_until overloadsIdan Horowitz
2022-01-24LibC: Add POSIX spec link for unistd mknod() APIKenneth Myhra
2022-01-23Kernel: Add ioctl to get the EDID from a framebufferTom
2022-01-23LibCore+LibC: Enforce the global event loop ban in codekleines Filmröllchen