2019-02-22 23:25:01 +01:00
|
|
|
#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);
|
|
|
|
|
|
|
|
/*
|
2019-04-15 22:39:48 +02:00
|
|
|
* Fill buffer with formatted UTC datatime string.
|
2019-02-22 23:25:01 +01:00
|
|
|
*/
|
2019-04-15 22:39:48 +02:00
|
|
|
void tr2_tbuf_utc_datetime_extended(struct tr2_tbuf *tb);
|
2019-04-15 22:39:49 +02:00
|
|
|
void tr2_tbuf_utc_datetime(struct tr2_tbuf *tb);
|
2019-02-22 23:25:01 +01:00
|
|
|
|
|
|
|
#endif /* TR2_TBUF_H */
|