17 lines
305 B
C
17 lines
305 B
C
// Laboratorio 8 - Esercizio 3 - Exrate.h
|
|
// Matteo Schiff - s295565
|
|
|
|
#ifndef EXRATE_DEFINED
|
|
#define EXRATE_DEFINED
|
|
#include "Datetime.h"
|
|
|
|
typedef struct exrate {
|
|
DateTime datetime;
|
|
int q, n;
|
|
} Exrate;
|
|
|
|
int ExrateRead(Exrate *e, FILE *fp);
|
|
void ExratePrint(Exrate e);
|
|
Exrate ExrateEmpty();
|
|
#endif
|