/* Weather symbols */ #ifndef WEATHER_H #define WEATHER_H struct weather_symbol { unsigned char line1[16]; unsigned char line2[16]; }; void ws_render(struct weather_symbol *symbol, unsigned char *buffer); extern struct weather_symbol ws_cloud; extern struct weather_symbol ws_sun; extern struct weather_symbol ws_suncloud; extern struct weather_symbol ws_storm; extern struct weather_symbol ws_fog; extern struct weather_symbol ws_rain; extern struct weather_symbol ws_snow; #endif