]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/bug18.c
Prepare vfscanf to use __strtof128_internal
[thirdparty/glibc.git] / stdio-common / bug18.c
CommitLineData
c2c7bd3f
UD
1#include <assert.h>
2#include <errno.h>
3#include <stdio.h>
4
e9055017
UD
5#ifndef CHAR
6# define CHAR char
7# define L(str) str
8# define SSCANF sscanf
9#endif
10
c2c7bd3f
UD
11
12static int
13do_test (void)
14{
15 printf("setting errno to EINTR\n");
16 errno = EINTR;
17
18 printf("checking sscanf\n");
19
e9055017 20 CHAR str[] = L("7-11");
c2c7bd3f
UD
21 int i, j, n;
22
23 i = j = n = 0;
e9055017 24 SSCANF (str, L(" %i - %i %n"), &i, &j, &n);
c2c7bd3f
UD
25 printf ("found %i-%i (length=%i)\n", i, j, n);
26
27 int result = 0;
28 if (i != 7)
29 {
30 printf ("i is %d, expected 7\n", i);
31 result = 1;
32 }
33 if (j != 11)
34 {
35 printf ("j is %d, expected 11\n", j);
36 result = 1;
37 }
38 if (n != 4)
39 {
40 printf ("n is %d, expected 4\n", j);
41 result = 1;
42 }
43
44 return result;
45}
46
47#define TEST_FUNCTION do_test ()
48#include "../test-skeleton.c"