2003-01-16 01:09:24 +01:00
|
|
|
/* Test case by Al Viro <aviro@redhat.com>. */
|
|
|
|
#include <locale.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <stdio.h>
|
2003-01-17 12:58:12 +01:00
|
|
|
#include <stdlib.h>
|
2003-01-16 01:09:24 +01:00
|
|
|
|
|
|
|
/* MB_CUR_MAX multibyte ones (6 UTF+0080, in this case) */
|
|
|
|
static const char string[] = "\
|
|
|
|
\xc2\x80\xc2\x80\xc2\x80\xc2\x80\xc2\x80\xc2\x80";
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
2003-01-28 08:32:19 +01:00
|
|
|
if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL)
|
2003-01-16 01:09:24 +01:00
|
|
|
{
|
|
|
|
puts ("cannot set locale");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
wchar_t s[7];
|
|
|
|
int n = sscanf (string, "%l[\x80\xc2]", s);
|
|
|
|
if (n != 1)
|
|
|
|
{
|
|
|
|
printf ("return values %d != 1\n", n);
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|