aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdlib/strtof_l.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-11[libc] Move libc_errno.h to libc/src/__support and make ↵lntue1-1/+1
LIBC_ERRNO_MODE_SYSTEM to be header-only. (#143187) This is the first step in preparation for: https://discourse.llvm.org/t/rfc-make-clang-builtin-math-functions-constexpr-with-llvm-libc-to-support-c-23-constexpr-math-functions/86450
2024-08-29[libc] Implement locale variants for 'stdlib.h' functions (#105718)Joseph Huber1-0/+30
Summary: This provides the `_l` variants for the `stdlib.h` functions. These are just copies of the same entrypoint and don't do anything with the locale information.