Chris Lattner | e4bd95e | 2002-04-08 19:32:51 +0000 | [diff] [blame^] | 1 | |
2 | typedef struct Connection_Type { | ||||
3 | long to; | ||||
4 | char type[10]; | ||||
5 | long length; | ||||
6 | } Connection; | ||||
7 | |||||
8 | Connection link[3] | ||||
9 | = { {1, "link1", 10}, | ||||
10 | {2, "link2", 20}, | ||||
11 | {3, "link3", 30} }; | ||||
12 |