diff options
Diffstat (limited to 'src/text.h')
| -rw-r--r-- | src/text.h | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -6,18 +6,10 @@ #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 *); +const char * text_get_val(struct text *); #endif |
