Do not use non-POSIX strtoll_l and strtoull_l
strtoll_l() and strtoull_l() are not specified in POSIX and e. g. musl libc
does not provide these methods.
The only usage of the methods is in locale, where they are used with "C"
locale only. I believe there hardly is any implementation that implement integers
parsing in a locale-dependent way.
As I see, blame for the usaging of this method goes all the way down to initial libcxx export.