git/trace2/tr2_tbuf.h
Jeff Hostetler bad229aef2 trace2: clarify UTC datetime formatting
Update tr2_tbuf_utc_datetime to generate extended UTC format.
Update tr2_tgt_event target to use extended format in 'time' columns.

Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-04-16 13:37:07 +09:00

24 lines
460 B
C

#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 */