1// C++ forwarding C locale header.
2 3#pragma once 4 5#include<locale.h> 6 7// Get rid of those macros defined in <locale.h> in lieu of real functions.
8#undef setlocale 9#undef localeconv1011namespacestd12{13using::lconv;14using::setlocale;15using::localeconv;16}