diff options
Diffstat (limited to 'src/modules/time.h')
| -rw-r--r-- | src/modules/time.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/modules/time.h b/src/modules/time.h new file mode 100644 index 0000000..2dec7d5 --- /dev/null +++ b/src/modules/time.h @@ -0,0 +1,15 @@ +#ifndef _DWXINFO_MODULES_TIME_H_ +#define _DWXINFO_MODULES_TIME_H_ + +#define TIME_VALUE_SIZE 32 + +struct time { + char value[TIME_VALUE_SIZE]; +}; + +struct time * time_new(); +void time_free(struct time *); + +void time_update(struct time *); + +#endif |
