typedef struct wenzel { int liczba; struct wenzel *nastepny; } aa; struct wenzel* ostatni(struct wenzel *p); int dodaj(struct wenzel *koniec,int liczban); int czytaj(char *nazwa_pliku,struct wenzel *p); int zapisz(char *nazwa_pliku,struct wenzel *p); struct wenzel *przedostatni(struct wenzel *p); void zamien(struct wenzel *p); struct wenzel *init();