1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef _LANGINFO_H #define _LANGINFO_H #ifdef __cplusplus extern "C" { #endif #include <bits/posix/locale_t.h> #include <bits/nl_item.h> #ifndef __MLIBC_ABI_ONLY char *nl_langinfo(nl_item); char *nl_langinfo_l(nl_item, locale_t); #endif /* !__MLIBC_ABI_ONLY */ #ifdef __cplusplus } #endif #endif // _LANGINFO_H