1#include <stdio.h>
2#include <string.h>
3#include <stdlib.h>
4
5int
6main (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 (format: "ret: %d, name: %s\n", ret, buf);
13 if (ret != 1 || strcmp (buf, "Term_bits[]") != 0)
14 abort ();
15 return 0;
16}
17

source code of glibc/stdio-common/scanf8.c