summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/apr_time.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/apr_time.h b/include/apr_time.h
index 575e30628..328a1bf29 100644
--- a/include/apr_time.h
+++ b/include/apr_time.h
@@ -135,6 +135,19 @@ APR_DECLARE(apr_status_t) apr_ansi_time_to_apr_time(apr_time_t *result,
time_t input);
/**
+ * convert a time to its human readable components using an offset
+ * from GMT
+ * @param result the exploded time
+ * @param input the time to explode
+ * @param offs the number of seconds offset to apply
+ * @param zone the zone description
+ * @deffunc apr_status_t apr_explode_time(apr_exploded_time_t *result, apr_time_t input, apr_int32_t offs)
+ */
+APR_DECLARE(apr_status_t) apr_explode_time(apr_exploded_time_t *result,
+ apr_time_t input,
+ apr_int32_t offs);
+
+/**
* convert a time to its human readable components in GMT timezone
* @param result the exploded time
* @param input the time to explode