https://github.com/git/git
Raw File
Tip revision: 3c2a3fdc388747b9eaf4a4a4f2035c1c9ddb26d0 authored by Junio C Hamano on 23 February 2024, 00:14:53 UTC
Git 2.44
Tip revision: 3c2a3fd
tr2_tbuf.h
#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);
void tr2_tbuf_utc_datetime(struct tr2_tbuf *tb);

#endif /* TR2_TBUF_H */
back to top