9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
38 lines
862 B
C++
38 lines
862 B
C++
#include <bits/posix/posix_locale.h>
|
|
#include <bits/ensure.h>
|
|
#include <mlibc/debug.hpp>
|
|
|
|
namespace {
|
|
|
|
bool newlocale_seen = false;
|
|
bool uselocale_seen = false;
|
|
|
|
} // namespace
|
|
|
|
locale_t newlocale(int, const char *, locale_t) {
|
|
// Due to all of the locale functions being stubs, the locale will not be used
|
|
if(!newlocale_seen) {
|
|
mlibc::infoLogger() << "mlibc: newlocale() is a no-op" << frg::endlog;
|
|
newlocale_seen = true;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void freelocale(locale_t) {
|
|
mlibc::infoLogger() << "mlibc: freelocale() is a no-op" << frg::endlog;
|
|
return;
|
|
}
|
|
|
|
locale_t uselocale(locale_t) {
|
|
if(!uselocale_seen) {
|
|
mlibc::infoLogger() << "mlibc: uselocale() is a no-op" << frg::endlog;
|
|
uselocale_seen = true;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
locale_t duplocale(locale_t) {
|
|
mlibc::infoLogger() << "mlibc: duplocale() is a no-op" << frg::endlog;
|
|
return nullptr;
|
|
}
|