summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/sscanf-6.c
blob: 6cbd8c5f0a6c3ce670a2d55101567ee7aac89c1f (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(int argc, char **argv) {
	char buf[20];
	int a[2], b;
	sscanf(buf, "%3d %d %3d %30s %50d %20c %21c", &a[0], &a[1], &b, buf, buf, buf, buf);
	return 0;
}