X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Flocale%2F_PDCLIB_unicodedata.c;h=e4e9c83b48ac5f8c8de8792b3b459ecaec1d8f11;hp=868b5a66a6b200b3387aca285fafee16b43ec3b8;hb=c6158c4e0aa0634d87ae800be0959e7a99a84b37;hpb=f6b4e5f0b3cec07b1a5221d57c4dc94383cdfe9f diff --git a/functions/locale/_PDCLIB_unicodedata.c b/functions/locale/_PDCLIB_unicodedata.c index 868b5a6..e4e9c83 100644 --- a/functions/locale/_PDCLIB_unicodedata.c +++ b/functions/locale/_PDCLIB_unicodedata.c @@ -10,9 +10,10 @@ * in Exhibit 1 of the Unicode Terms of Use, found at * http://www.unicode.org/copyright.html#Exhibit1 */ + #ifndef REGTEST #include <_PDCLIB_locale.h> - _PDCLIB_wctype_t _PDCLIB_wctype[] = { + _PDCLIB_wcinfo_t _PDCLIB_wcinfo[] = { // { value, flags, lower, upper }, // name { 0x0, 0x4, 0x0, 0x0 }, // { 0x1, 0x4, 0x1, 0x1 }, // @@ -24445,5 +24446,15 @@ { 0x10FFFD, 0x0, 0x10FFFD, 0x10FFFD }, // }; -size_t _PDCLIB_wctype_size = sizeof(_PDCLIB_wctype) / sizeof(_PDCLIB_wctype[0]); + +size_t _PDCLIB_wcinfo_size = sizeof(_PDCLIB_wcinfo) / sizeof(_PDCLIB_wcinfo[0]); +#endif + +#ifdef TEST +#include <_PDCLIB_test.h> +int main( void ) +{ + return TEST_RESULTS; +} +#endif