/* Locale support implementation through OS/2 Unicode API. Copyright (c) 2003 InnoTek Systemberatung GmbH For conditions of distribution and use, see the file COPYING. POSIX locale implementation. */ #ifndef _LOCALE_H #define _LOCALE_H #if defined (__cplusplus) extern "C" { #endif /* lconv and categories */ #include /* Set current locale, if __locale is not NULL. Returns previous locale. */ extern char *setlocale (int category, __const__ char *locale); /* Get information about current locale. */ extern struct lconv *localeconv (void); #if defined (__cplusplus) } #endif #endif /* not _LOCALE_H */