projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update.
[platform/upstream/glibc.git]
/
stdio-common
/
bug11.c
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
}