#ifndef _DWXINFO_TEXT_H_ #define _DWXINFO_TEXT_H_ #include #include #define TEXT_SIZE 512 struct text { time_t last_update; char value[TEXT_SIZE]; struct battery * battery; struct pulse * pulse; struct time * time; }; struct text * text_new(); void text_free(struct text *); void text_update(struct text *); #endif