29 lines
512 B
C
29 lines
512 B
C
![]() |
/* _PDCLIB_initclocale( locale_t )
|
||
|
|
||
|
This file is part of the Public Domain C Library (PDCLib).
|
||
|
Permission is granted to use, modify, and / or redistribute at will.
|
||
|
*/
|
||
|
|
||
|
#ifndef REGTEST
|
||
|
#include "_PDCLIB_clocale.h"
|
||
|
#include "_PDCLIB_locale.h"
|
||
|
|
||
|
void _PDCLIB_initclocale( locale_t l )
|
||
|
{
|
||
|
// TODO: There will be more added here...
|
||
|
|
||
|
l->_WCType = _PDCLIB_wcinfo;
|
||
|
l->_WCTypeSize = _PDCLIB_wcinfo_size;
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#ifdef TEST
|
||
|
#include "_PDCLIB_test.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
return TEST_RESULTS;
|
||
|
}
|
||
|
|
||
|
#endif
|