diff options
Diffstat (limited to 'date.h')
| -rw-r--r-- | date.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,11 +3,13 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <time.h> typedef struct Date { int day; int month; int year; + int weekday; } Date; Date extract_date(char *str); |
