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,19 @@
// Laboratorio 8 - Esercizio 3 - Datetime.h
// Matteo Schiff - s295565
#ifndef DATETIME_DEFINED
#define DATETIME_DEFINED
#include <stdio.h>
typedef struct datetime {
int day;
int month;
int year;
int hours;
int minutes;
} DateTime;
int DateTimeCompare(DateTime a, DateTime b);
int DateTimeRead(DateTime * dt, FILE * fp);
int DateRead(DateTime * dt, FILE * fp);
#endif