1999-11-21 07:51:06 +01:00
|
|
|
/* Test program for user-defined character maps.
|
2000-06-17 05:08:26 +02:00
|
|
|
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
|
1999-11-21 07:51:06 +01:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1999-11-21 07:51:06 +01:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1999-11-21 07:51:06 +01:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1999-11-21 07:51:06 +01:00
|
|
|
|
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
2000-06-21 14:39:22 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-06-18 02:23:52 +02:00
|
|
|
#include <wchar.h>
|
1999-11-21 07:51:06 +01:00
|
|
|
#include <wctype.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
2000-06-18 02:23:52 +02:00
|
|
|
char buf[30];
|
|
|
|
wchar_t wbuf[30];
|
1999-11-21 07:51:06 +01:00
|
|
|
wctrans_t t;
|
|
|
|
wint_t wch;
|
|
|
|
int errors = 0;
|
2000-06-18 02:23:52 +02:00
|
|
|
int len;
|
1999-11-21 07:51:06 +01:00
|
|
|
|
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
|
|
|
t = wctrans ("test");
|
|
|
|
if (t == (wctrans_t) 0)
|
2000-06-17 05:08:26 +02:00
|
|
|
{
|
|
|
|
puts ("locale data files probably not loaded");
|
|
|
|
exit (1);
|
|
|
|
}
|
1999-11-21 07:51:06 +01:00
|
|
|
|
|
|
|
wch = towctrans (L'A', t);
|
|
|
|
printf ("towctrans (L'A', t) = %c\n", wch);
|
|
|
|
if (wch != L'B')
|
|
|
|
errors = 1;
|
|
|
|
|
|
|
|
wch = towctrans (L'B', t);
|
|
|
|
printf ("towctrans (L'B', t) = %c\n", wch);
|
|
|
|
if (wch != L'C')
|
|
|
|
errors = 1;
|
|
|
|
|
2000-06-18 02:23:52 +02:00
|
|
|
/* Test the output digit handling. */
|
|
|
|
swprintf (wbuf, sizeof (wbuf) / sizeof (wbuf[0]), L"%Id", 0x499602D2);
|
|
|
|
errors |= wcscmp (wbuf, L"bcdefghija") != 0;
|
|
|
|
len = wcslen (wbuf);
|
|
|
|
errors |= len != 10;
|
|
|
|
printf ("len = %d, wbuf = L\"%ls\"\n", len, wbuf);
|
|
|
|
|
|
|
|
snprintf (buf, sizeof buf, "%Id", 0x499602D2);
|
|
|
|
errors |= strcmp (buf, "bcdefghija") != 0;
|
|
|
|
len = strlen (buf);
|
|
|
|
errors |= len != 10;
|
|
|
|
printf ("len = %d, buf = \"%s\"\n", len, buf);
|
|
|
|
|
1999-11-21 07:51:06 +01:00
|
|
|
return errors;
|
|
|
|
}
|