lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 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 | } |