summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/wchar.h
AgeCommit message (Collapse)Author
2021-05-30LibC: Add stubs for wctype and iswctypeTim Schumacher
2021-05-30LibC: Stub out btowcTim Schumacher
wint_t is also not supposed to be defined by sys/types.h, but should be defined in wchar.h instead. Since we require it for our definition of btowc, let's move it to the correct place.
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-18LibC: Add wcstol() and wcstoll() stubsLinus Groh
2021-01-18LibC: Add wcsncmp()Linus Groh
Taken from strncmp(), like wcscmp() in ef40ebb. :^)
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling