blob: 38308e37f8cc5e4a57a53388935b55e0035f5376 [file] [log] [blame]
Chris Lattnere4bd95e2002-04-08 19:32:51 +00001
2typedef struct Connection_Type {
3 long to;
4 char type[10];
5 long length;
6} Connection;
7
8Connection link[3]
9= { {1, "link1", 10},
10 {2, "link2", 20},
11 {3, "link3", 30} };
12