blob: 8ffc1649283d22a96a45e27cdda72ef7e424ef00 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _DWXINFO_MODULES_TIME_H_
#define _DWXINFO_MODULES_TIME_H_
struct time * time_new();
void time_free(struct time *);
void time_update(struct time *);
const char * time_get_val(struct time *);
#endif
|