Autovelox/funzioni.h

25 lines
498 B
C
Raw Normal View History

2024-10-13 08:13:26 +00:00
//
// Created by angel on 13/10/2024.
//
#ifndef AUTOVELOX_FUNZIONI_H
#define AUTOVELOX_FUNZIONI_H
2024-10-13 19:49:19 +00:00
typedef struct {
char targa[8];
char data[11];
char ora[6];
char velocita[4];
char limite[4];
char importo[6];
char pagata[2];
}Multa;
Multa *creaMulta(char targa[], char data[], char ora[], char velocita[], char limite[], char importo[], char pagata[]);
void iniziaMulta(Multa *multe[]);
void aggiungiMulta(Multa *multe[], Multa *m);
2024-10-13 08:13:26 +00:00
#endif //AUTOVELOX_FUNZIONI_H