added HSM corruption tool
[tridge/junkcode.git] / struct.c
1 struct foo {
2         struct bar *x1;
3 };
4
5 typedef struct bar {
6         struct bar *next, *prev;
7         int x2;
8 } BAR_STRUCT;
9
10