diff options
| author | Sam Light <sam@lightscale.co.uk> | 2025-09-10 19:37:28 +0100 |
|---|---|---|
| committer | Sam Light <sam@lightscale.co.uk> | 2025-09-10 19:37:28 +0100 |
| commit | 4d3e462531d2172cb13319c7f79c0e2228e652fa (patch) | |
| tree | 6381426e806b30814890e74085afef17e3ee78f3 /src/modules/time.h | |
| parent | b74a383e6ded85c122f98137936d78f768f8f938 (diff) | |
Big update
Diffstat (limited to 'src/modules/time.h')
| -rw-r--r-- | src/modules/time.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/modules/time.h b/src/modules/time.h index 2dec7d5..8ffc164 100644 --- a/src/modules/time.h +++ b/src/modules/time.h @@ -1,15 +1,10 @@ #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 *); +const char * time_get_val(struct time *); #endif |
