summaryrefslogtreecommitdiff
path: root/src/modules/time.h
blob: 2dec7d5acf4c4ee22584412eb475d0dc909f9821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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