diff options
Diffstat (limited to 'src/include/pgtime.h')
-rw-r--r-- | src/include/pgtime.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/pgtime.h b/src/include/pgtime.h index a74059cb075..5f71edae5d9 100644 --- a/src/include/pgtime.h +++ b/src/include/pgtime.h @@ -49,6 +49,12 @@ extern int pg_next_dst_boundary(const pg_time_t *timep, long int *after_gmtoff, int *after_isdst, const pg_tz *tz); +extern bool pg_interpret_timezone_abbrev(const char *abbrev, + const pg_time_t *timep, + long int *gmtoff, + int *isdst, + const pg_tz *tz); + extern size_t pg_strftime(char *s, size_t max, const char *format, const struct pg_tm * tm); |