aboutsummaryrefslogtreecommitdiffstats
path: root/src/UTCTime.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-06-12 18:59:38 +0200
committerHarald Welte <laforge@gnumonks.org>2010-06-12 18:59:38 +0200
commit92c45f3390c2f9bae25e7594a690cebbe2826fe9 (patch)
tree8ef9e0b23b83ab9e50bc4b8bba6c07bc91b52224 /src/UTCTime.h
initial import of /usr/share/asn1c/*.[ch] skeleton files
Diffstat (limited to 'src/UTCTime.h')
-rw-r--r--src/UTCTime.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/UTCTime.h b/src/UTCTime.h
new file mode 100644
index 0000000..8035b34
--- /dev/null
+++ b/src/UTCTime.h
@@ -0,0 +1,38 @@
+/*-
+ * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
+ * Redistribution and modifications are permitted subject to BSD license.
+ */
+#ifndef _UTCTime_H_
+#define _UTCTime_H_
+
+#include <OCTET_STRING.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef OCTET_STRING_t UTCTime_t; /* Implemented via OCTET STRING */
+
+extern asn_TYPE_descriptor_t asn_DEF_UTCTime;
+
+asn_struct_print_f UTCTime_print;
+asn_constr_check_f UTCTime_constraint;
+xer_type_encoder_f UTCTime_encode_xer;
+
+/***********************
+ * Some handy helpers. *
+ ***********************/
+
+struct tm; /* <time.h> */
+
+/* See asn_GT2time() in GeneralizedTime.h */
+time_t asn_UT2time(const UTCTime_t *, struct tm *_optional_tm4fill, int as_gmt);
+
+/* See asn_time2GT() in GeneralizedTime.h */
+UTCTime_t *asn_time2UT(UTCTime_t *__opt_ut, const struct tm *, int force_gmt);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _UTCTime_H_ */