]> andersk Git - splint.git/blob - test/init.c
noexpand always false.
[splint.git] / test / init.c
1 char c[][] = { NULL, "hullo", { 'a', 'b', 3 }, NULL };
2
3 struct { char *name; int x[]; char *uname; int y; } st 
4   = { "bob", { 1, 2}, NULL, 1.2 }; 
5
6 struct { char *name; int x[]; char *uname; int y; } st2[] 
7   = { { "bob", { 1, 2}, NULL }, 
8       { "charly", 3, NULL, 4 } } ;
9
10 int a[10] = { 1, 2, 3, 4, 3.4, 6, 4 } ;
11
12 int aa[][] = { { 1, 2, 3} , { 1, 3.2, 3} };
13
14 int b[10] = { { 1, 2} , {3, 4} } ;
15
16
This page took 0.299757 seconds and 5 git commands to generate.