]> pd.if.org Git - pdclib/blob - functions/locale/freelocale.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / locale / freelocale.c
1 /* freelocale( locale_t )\r
2 \r
3    This file is part of the Public Domain C Library (PDCLib).\r
4    Permission is granted to use, modify, and / or redistribute at will.\r
5 */\r
6 \r
7 #include <locale.h>\r
8 #ifndef REGTEST\r
9 #include "_PDCLIB_locale.h"\r
10 #include <assert.h>\r
11 \r
12 void freelocale( locale_t newloc )\r
13 {\r
14     if( newloc != NULL ) {\r
15         assert( ! "Not implemented" );\r
16     }\r
17 }\r
18 \r
19 #endif\r
20 \r
21 #ifdef TEST\r
22 #include "_PDCLIB_test.h"\r
23 \r
24 int main( void )\r
25 {\r
26     TESTCASE( NO_TESTDRIVER );\r
27     return TEST_RESULTS;\r
28 }\r
29 #endif\r