Revision b927c80531cca9b9107754186532e8cb00884008 authored by Junio C Hamano on 22 October 2020, 22:07:25 UTC, committed by Junio C Hamano on 22 October 2020, 22:07:25 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 380ba99
Raw File
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