]> pd.if.org Git - pdclib.old/blob - internals/_PDCLIB_locale.h
PDCLIB-2 PDCLIB-9: Add char32/char16 conversions to header, incl. optional extras...
[pdclib.old] / 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