forked from OSchip/llvm-project
parent
3e39da81f2
commit
fec8df44ba
|
@ -0,0 +1,12 @@
|
|||
|
||||
typedef struct Connection_Type {
|
||||
long to;
|
||||
char type[10];
|
||||
long length;
|
||||
} Connection;
|
||||
|
||||
Connection link[3]
|
||||
= { {1, "link1", 10},
|
||||
{2, "link2", 20},
|
||||
{3, "link3", 30} };
|
||||
|
Loading…
Reference in New Issue