1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
#ifndef MYTIPIDATO_H_INCLUDED #define MYTIPIDATO_H_INCLUDED typedef char t_targa [10]; struct t_data { int giorno; int mese; int anno; }; struct t_auto { t_targa targa; char descrizione[30]; int km; t_data dataImm; float prezzo; bool cancellato = false; }; struct t_indice { t_targa targa; int posizione; }; #endif // MYTIPIDATO_H_INCLUDED |