1
0

feat: Initial commit

This commit is contained in:
2024-03-22 17:37:24 +01:00
parent 4288bd63a1
commit 6732a7a166
120 changed files with 9620 additions and 0 deletions

View 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