]> git.ipfire.org Git - thirdparty/git.git/blame - trace2/tr2_tbuf.h
Merge branch 'jt/delay-fetch-if-missing'
[thirdparty/git.git] / trace2 / tr2_tbuf.h
CommitLineData
ee4512ed
JH
1#ifndef TR2_TBUF_H
2#define TR2_TBUF_H
3
4/*
5 * A simple wrapper around a fixed buffer to avoid C syntax
6 * quirks and the need to pass around an additional size_t
7 * argument.
8 */
9struct tr2_tbuf {
10 char buf[32];
11};
12
13/*
14 * Fill buffer with formatted local time string.
15 */
16void tr2_tbuf_local_time(struct tr2_tbuf *tb);
17
18/*
bad229ae 19 * Fill buffer with formatted UTC datatime string.
ee4512ed 20 */
bad229ae 21void tr2_tbuf_utc_datetime_extended(struct tr2_tbuf *tb);
08881b9a 22void tr2_tbuf_utc_datetime(struct tr2_tbuf *tb);
ee4512ed
JH
23
24#endif /* TR2_TBUF_H */