]> git.ipfire.org Git - thirdparty/glibc.git/blob - stdio-common/scanf8.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / stdio-common / scanf8.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdlib.h>
4
5 int
6 main (int argc, char *argv[])
7 {
8 int ret;
9 char buf [1024] = "Ooops";
10
11 ret = sscanf ("static char Term_bits[] = {", "static char %s = {", buf);
12 printf ("ret: %d, name: %s\n", ret, buf);
13 if (ret != 1 || strcmp (buf, "Term_bits[]") != 0)
14 abort ();
15 return 0;
16 }