1/* "C" Locale Support 2 3 This file is part of the Public Domain C Library (PDCLib). 4 Permission is granted to use, modify, and / or redistribute at will. 5*/ 6 7#ifndef _PDCLIB_CLOCALE_H 8#define _PDCLIB_CLOCALE_H _PDCLIB_CLOCALE_H 9#include <locale.h> 10#ifdef __cplusplus 11extern "C" { 12#endif 13 14void _PDCLIB_initclocale( locale_t l ); 15 16#ifdef __cplusplus 17} 18#endif 19#endif // _PDCLIB_CLOCALE_H 20 21