Revision 9d36b1e9c2113c88003b668ba33cd2c9869a5c55 authored by Junio C Hamano on 06 February 2021, 00:31:26 UTC, committed by Junio C Hamano on 06 February 2021, 00:31:26 UTC
Doc update.

* tb/local-clone-race-doc:
  Documentation/git-clone.txt: document race with --local
2 parent s 4f985d5 + a4a1ca2
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