]> pd.if.org Git - pdclib/blob - functions/locale/freelocale.c
dos2unix
[pdclib] / functions / locale / freelocale.c
1 /* freelocale( locale_t )
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 #include <locale.h>
8 #ifndef REGTEST
9 #include "_PDCLIB_locale.h"
10 #include <assert.h>
11
12 void freelocale( locale_t newloc )
13 {
14     if( newloc != NULL ) {
15         assert( ! "Not implemented" );
16     }
17 }
18
19 #endif
20
21 #ifdef TEST
22 #include "_PDCLIB_test.h"
23
24 int main( void )
25 {
26     TESTCASE( NO_TESTDRIVER );
27     return TEST_RESULTS;
28 }
29 #endif