feat: Initial commit
This commit is contained in:
16
Laboratorio 8/Esercizio 3/Exrate.h
Normal file
16
Laboratorio 8/Esercizio 3/Exrate.h
Normal file
@@ -0,0 +1,16 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user