1
0
mirror of https://github.com/git/git.git synced 2024-09-22 18:21:31 +02:00
git/trace2/tr2_tbuf.h

24 lines
443 B
C
Raw Normal View History

#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 time string.
*/
void tr2_tbuf_utc_time(struct tr2_tbuf *tb);
#endif /* TR2_TBUF_H */