]> pd.if.org Git - pdclib/blob - internals/_PDCLIB_locale.h
bed89b561a39903a0ea335b1be7401359d87d5d4
[pdclib] / internals / _PDCLIB_locale.h
1 #ifndef __PDCLIB_LOCALE_H
2 #define __PDCLIB_LOCALE_H __PDCLIB_LOCALE_H
3 #include <locale.h>
4
5 #define _PDCLIB_threadlocale() (uselocale(NULL))
6
7 struct _PDCLIB_locale {
8     struct _PDCLIB_charcodec    *_Codec;
9     struct lconv                 _Conv;
10 };
11
12 #endif