24 lines
502 B
C
24 lines
502 B
C
//
|
|
// Created by angel on 13/10/2024.
|
|
//
|
|
|
|
#ifndef AUTOVELOX_FUNZIONI_H
|
|
#define AUTOVELOX_FUNZIONI_H
|
|
|
|
typedef struct {
|
|
char targa[8];
|
|
char data[11];
|
|
char ora[6];
|
|
char velocita[4];
|
|
}Multa;
|
|
|
|
Multa *multe[1000];
|
|
|
|
Multa *creaMulta(char targa[], char data[], char ora[], char velocita[]);
|
|
void iniziaMulta(Multa *multe[]);
|
|
void aggiungiMulta(Multa *multe[], Multa *m);
|
|
void calcolaInfrazioni(Multa *multe[], char targa[]);
|
|
void salvaInfrazioni(Multa *multe[]);
|
|
|
|
#endif //AUTOVELOX_FUNZIONI_H
|