gesamt: ein weiterer testfall der die richtige verwaltung der parameter prueft
[testub10.git] / codeb / abgabe_bg.call
1 typedef struct list {struct list *next; } list;
2
3 extern long length(list *);
4 list a={NULL};
5 list b={&a};
6 list c={&b};
7 list d={&c};
8 list e={&a};
9 RET(2==length(&e) && 4==length(&d));