lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | #include <stdio.h> |
2 | #include <string.h> | ||||
3 | |||||
4 | int | ||||
5 | main (int argc, char *argv[]) | ||||
6 | { | ||||
7 | int ret; | ||||
8 | char buf [1024] = "Ooops"; | ||||
9 | |||||
10 | ret = sscanf ("static char Term_bits[] = {", "static char %s = {", buf); | ||||
11 | printf ("ret: %d, name: %s\n", ret, buf); | ||||
12 | |||||
13 | return strcmp (buf, "Term_bits[]") != 0 || ret != 1; | ||||
14 | } |