about summary refs log tree commit diff
path: root/third_party/git/trace2/tr2_tbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/trace2/tr2_tbuf.h')
-rw-r--r--third_party/git/trace2/tr2_tbuf.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/third_party/git/trace2/tr2_tbuf.h b/third_party/git/trace2/tr2_tbuf.h
deleted file mode 100644
index fa853d8f42..0000000000
--- a/third_party/git/trace2/tr2_tbuf.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#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 */