2002-08-28 Roland McGrath <roland@redhat.com>

* tst-xlocale1.c (main): Remove __ from function names.
	* tst-xlocale2.c: Likewise.
This commit is contained in:
Roland McGrath 2002-08-28 08:44:07 +00:00
parent c096ab2534
commit f6056d40d8
2 changed files with 14 additions and 14 deletions

View File

@ -25,7 +25,7 @@ main (void)
{ {
int cnt; int cnt;
int result = 0; int result = 0;
__locale_t loc = __newlocale (1 << LC_ALL, "C", NULL); locale_t loc = newlocale (1 << LC_ALL, "C", NULL);
for (cnt = 0; cnt < ntests; ++cnt) for (cnt = 0; cnt < ntests; ++cnt)
{ {
@ -38,10 +38,10 @@ main (void)
continue; continue;
} }
printf ("\n__strcasecmp_l (\"%s\", \"%s\", loc)\n", printf ("\nstrcasecmp_l (\"%s\", \"%s\", loc)\n",
tests[cnt].str1, tests[cnt].str2); tests[cnt].str1, tests[cnt].str2);
r = __strcasecmp_l (tests[cnt].str1, tests[cnt].str2, loc); r = strcasecmp_l (tests[cnt].str1, tests[cnt].str2, loc);
if (tests[cnt].result == 0) if (tests[cnt].result == 0)
{ {
if (r != 0) if (r != 0)

View File

@ -9,26 +9,26 @@ static int do_test (__locale_t l);
int int
main (void) main (void)
{ {
__locale_t l; locale_t l;
__locale_t l2; locale_t l2;
int result; int result;
l = __newlocale (1 << LC_ALL, "de_DE.ISO-8859-1", NULL); l = newlocale (1 << LC_ALL, "de_DE.ISO-8859-1", NULL);
if (l == NULL) if (l == NULL)
{ {
printf ("__newlocale failed: %m\n"); printf ("newlocale failed: %m\n");
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
puts ("Running tests of created locale"); puts ("Running tests of created locale");
result = do_test (l); result = do_test (l);
l2 = __duplocale (l); l2 = duplocale (l);
if (l2 == NULL) if (l2 == NULL)
{ {
printf ("__duplocale failed: %m\n"); printf ("duplocale failed: %m\n");
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
__freelocale (l); freelocale (l);
puts ("Running tests of duplicated locale"); puts ("Running tests of duplicated locale");
result |= do_test (l2); result |= do_test (l2);
@ -43,7 +43,7 @@ static const char exx[] = "11111111111111110111111000000000000000000000000000";
static int static int
do_test (__locale_t l) do_test (locale_t l)
{ {
int result = 0; int result = 0;
int n; int n;
@ -56,9 +56,9 @@ do_test (__locale_t l)
result = 1; \ result = 1; \
} }
DO_TEST (__isdigit_l, exd); DO_TEST (isdigit_l, exd);
DO_TEST (__isalpha_l, exa); DO_TEST (isalpha_l, exa);
DO_TEST (__isxdigit_l, exx); DO_TEST (isxdigit_l, exx);
return result; return result;
} }