summaryrefslogtreecommitdiff
path: root/trace2/tr2_tbuf.h
blob: 2a1d173ff255fde994c0dea230d9235d661f75fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef TR2_TBUF_H
#define TR2_TBUF_H
 
/*
 * A simple wrapper around a fixed buffer to avoid C syntax
 * quirks and the need to pass around an additional size_t
 * argument.
 */
struct tr2_tbuf {
	char buf[32];
};
 
/*
 * Fill buffer with formatted local time string.
 */
void tr2_tbuf_local_time(struct tr2_tbuf *tb);
 
/*
 * Fill buffer with formatted UTC datatime string.
 */
void tr2_tbuf_utc_datetime_extended(struct tr2_tbuf *tb);
 
#endif /* TR2_TBUF_H */