From a0ab4f4909a3f52e8b8243d2ae2dbb6f5027136c Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Fri, 15 May 2020 18:05:34 -0400 Subject: Add comments linking pg_strftime to timestamptz_to_str --- src/timezone/strftime.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/timezone/strftime.c') diff --git a/src/timezone/strftime.c b/src/timezone/strftime.c index 55c617f8c22..380b4888a5e 100644 --- a/src/timezone/strftime.c +++ b/src/timezone/strftime.c @@ -118,6 +118,12 @@ static char *_fmt(const char *, const struct pg_tm *, char *, const char *, static char *_yconv(int, int, bool, bool, char *, char const *); +/* + * Convert timestamp t to string s, a caller-allocated buffer of size maxsize, + * using the given format pattern. + * + * See also timestamptz_to_str. + */ size_t pg_strftime(char *s, size_t maxsize, const char *format, const struct pg_tm *t) { -- cgit v1.2.3