summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/locale.cpp
AgeCommit message (Collapse)Author
2021-06-05LibC: Let setlocale() pretend that setting the locale succeededGunnar Beutner
By returning nullptr we're telling the caller that setlocale() failed. Some programs expect setlocale() to succeed so let's pretend that it did.
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-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-02-11LibC: Remove FIXME spam in setlocale()Andreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling