aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/localtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/localtime.h')
-rw-r--r--include/asterisk/localtime.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/asterisk/localtime.h b/include/asterisk/localtime.h
new file mode 100644
index 000000000..313a8ddb6
--- /dev/null
+++ b/include/asterisk/localtime.h
@@ -0,0 +1,30 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 1999 - 2005, Digium, Inc.
+ *
+ * Mark Spencer <markster@digium.com>
+ * Tilghman Lesher <tlesher@vcch.com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*! \file
+ * \brief Custom localtime functions for multiple timezones
+ */
+
+#ifndef _ASTERISK_LOCALTIME_H
+#define _ASTERISK_LOCALTIME_H
+
+struct tm *ast_localtime(const time_t *timep, struct tm *p_tm, const char *zone);
+time_t ast_mktime(struct tm * const tmp, const char *zone);
+
+#endif /* _ASTERISK_LOCALTIME_H */