#include "wtime.h" #include "wtemp.h" #include "wwind.h" #define MAIN_ARRAY 1 typedef struct { Time * time; Temperature * temperature; Temperature * dewPoint; int relHum; Wind * wind; } WeatherData; extern WeatherData ** weather; void wprinter(WeatherData *w); int readFile(char *fileName); void freeAllWeather();