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