]> pd.if.org Git - pdclib/blobdiff - opt/c_locale/_PDCLIB_initclocale.c
Moved the C locale implementation into main code base. None of these are really optio...
[pdclib] / opt / c_locale / _PDCLIB_initclocale.c
diff --git a/opt/c_locale/_PDCLIB_initclocale.c b/opt/c_locale/_PDCLIB_initclocale.c
deleted file mode 100644 (file)
index d7cf350..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* _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
\ No newline at end of file