]> pd.if.org Git - pdclib.old/blobdiff - functions/locale/_PDCLIB_unicodedata.c
PDCLIB-1
[pdclib.old] / functions / locale / _PDCLIB_unicodedata.c
index 868b5a66a6b200b3387aca285fafee16b43ec3b8..e4e9c83b48ac5f8c8de8792b3b459ecaec1d8f11 100644 (file)
  * in Exhibit 1 of the Unicode Terms of Use, found at\r
  *   http://www.unicode.org/copyright.html#Exhibit1\r
  */\r
+ #ifndef REGTEST\r
  #include <_PDCLIB_locale.h>\r
 \r
- _PDCLIB_wctype_t _PDCLIB_wctype[] = {\r
+ _PDCLIB_wcinfo_t _PDCLIB_wcinfo[] = {\r
 //   { value,  flags,  lower,  upper   }, // name\r
      { 0x0,    0x4,    0x0,    0x0 }, // <control>\r
     { 0x1,     0x4,    0x1,    0x1 }, // <control>\r
     { 0x10FFFD,        0x0,    0x10FFFD,       0x10FFFD }, // <Plane 16 Private Use, Last>\r
 };\r
 \r
-size_t _PDCLIB_wctype_size = sizeof(_PDCLIB_wctype) / sizeof(_PDCLIB_wctype[0]);\r
+\r
+size_t _PDCLIB_wcinfo_size = sizeof(_PDCLIB_wcinfo) / sizeof(_PDCLIB_wcinfo[0]);\r
+#endif\r
+\r
+#ifdef TEST\r
+#include <_PDCLIB_test.h>\r
+int main( void )\r
+{\r
+    return TEST_RESULTS;\r
+}\r
+#endif\r
 \r