1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/* Taken from the Li18nux base test suite. */
#define _XOPEN_SOURCE 500
#include <errno.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <wchar.h>
#define WIDE_STR_LEN 32
int
main (int argc, char *argv[])
{
size_t i;
FILE *fp;
wchar_t *ret, wcs[WIDE_STR_LEN];
int result = 0;
const char il_str1[] = {0xe3, 0x81, '\0'};
const char il_str2[] = {'0', '\n', 'A', 'B', 0xe3, 0x81, 'E', '\0'};
char name1[] = "/tmp/tst-fgetws.out.XXXXXX";
char name2[] = "/tmp/tst-fgetws.out.XXXXXX";
int fd;
puts ("This program runs on de_DE.UTF-8 locale.");
if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL)
{
fprintf (stderr, "Err: Cannot run on the de_DE.UTF-8 locale");
exit (EXIT_FAILURE);
}
/* Make a file `il_str1'. */
fd = mkstemp (name1);
if (fd == -1)
{
printf ("cannot open temp file: %m\n");
exit (EXIT_FAILURE);
}
if ((fp = fdopen (fd, "w")) == NULL)
{
printf ("Can't open %s.\n", argv[1]);
exit (EXIT_FAILURE);
}
fwrite (il_str1, sizeof (char), sizeof (il_str1), fp);
fclose (fp);
/* Make a file `il_str2'. */
fd = mkstemp (name2);
if (fd == -1)
{
printf ("cannot open temp file: %m\n");
exit (EXIT_FAILURE);
}
if ((fp = fdopen (fd, "w")) == NULL)
{
fprintf (stderr, "Can't open %s.\n", argv[1]);
exit (EXIT_FAILURE);
}
fwrite (il_str2, sizeof (char), sizeof (il_str2), fp);
fclose (fp);
/* Test for il_str1. */
if ((fp = fopen (name1, "r")) == NULL)
{
fprintf (stderr, "Can't open %s.\n", argv[1]);
exit (EXIT_FAILURE);
}
puts ("--");
puts ("Read a byte sequence which is invalid as a wide character string.");
puts (" bytes: 0xe3, 0x81, '\\0'");
errno = 0;
ret = fgetws (wcs, WIDE_STR_LEN, fp);
if (ret == NULL)
{
puts ("Return Value: NULL");
if (errno == EILSEQ)
puts ("errno = EILSEQ");
else
{
printf ("errno = %d\n", errno);
result = 1;
}
}
else
{
printf ("Return Value: %p\n", ret);
for (i = 0; i < wcslen (wcs) + 1; i++)
printf (" wcs[%zd] = %04x", i, (unsigned int)wcs[i]);
printf ("\n");
result = 1;
}
/* Test for il_str2. */
if ((fp = fopen (name2, "r")) == NULL)
{
fprintf (stderr, "Can't open %s.\n", argv[1]);
exit (EXIT_FAILURE);
}
puts ("--");
puts ("Read a byte sequence which is invalid as a wide character string.");
puts (" bytes: '0', '\\n', 'A', 'B', 0xe3, 0x81, 'c', '\\0'");
errno = 0;
ret = fgetws (wcs, WIDE_STR_LEN, fp);
if (ret == NULL)
{
puts ("Return Value: NULL");
if (errno == EILSEQ)
puts ("errno = EILSEQ");
else
printf ("errno = %d\n", errno);
result = 1;
}
else
{
size_t i;
printf ("Return Value: %p\n", ret);
for (i = 0; i < wcslen (wcs) + 1; i++)
printf (" wcs[%zd] = 0x%04x", i, (unsigned int)wcs[i]);
printf ("\n");
for (i = 0; il_str2[i] != '\n'; ++i)
if ((wchar_t) il_str2[i] != wcs[i])
{
puts ("read string not correct");
result = 1;
break;
}
if (il_str2[i] == '\n')
{
if (wcs[i] != L'\n')
{
puts ("newline missing");
result = 1;
}
else if (wcs[i + 1] != L'\0')
{
puts ("read string not NUL-terminated");
result = 1;
}
}
}
puts ("\nsecond line");
errno = 0;
ret = fgetws (wcs, WIDE_STR_LEN, fp);
if (ret == NULL)
{
puts ("Return Value: NULL");
if (errno == EILSEQ)
puts ("errno = EILSEQ");
else
{
printf ("errno = %d\n", errno);
result = 1;
}
}
else
{
printf ("Return Value: %p\n", ret);
for (i = 0; i < wcslen (wcs) + 1; i++)
printf (" wcs[%zd] = 0x%04x", i, (unsigned int)wcs[i]);
printf ("\n");
}
fclose (fp);
unlink (name1);
unlink (name2);
return result;
}
|