summary refs log tree commit diff
path: root/runit-2.1.2/src/taia.h
diff options
context:
space:
mode:
Diffstat (limited to 'runit-2.1.2/src/taia.h')
-rw-r--r--runit-2.1.2/src/taia.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/runit-2.1.2/src/taia.h b/runit-2.1.2/src/taia.h
new file mode 100644
index 0000000..3882d1d
--- /dev/null
+++ b/runit-2.1.2/src/taia.h
@@ -0,0 +1,36 @@
+/* Public domain. */
+
+#ifndef TAIA_H
+#define TAIA_H
+
+#include "tai.h"
+
+struct taia {
+  struct tai sec;
+  unsigned long nano; /* 0...999999999 */
+  unsigned long atto; /* 0...999999999 */
+} ;
+
+extern void taia_tai(const struct taia *,struct tai *);
+
+extern void taia_now(struct taia *);
+
+extern double taia_approx(const struct taia *);
+extern double taia_frac(const struct taia *);
+
+extern void taia_add(struct taia *,const struct taia *,const struct taia *);
+extern void taia_addsec(struct taia *,const struct taia *,int);
+extern void taia_sub(struct taia *,const struct taia *,const struct taia *);
+extern void taia_half(struct taia *,const struct taia *);
+extern int taia_less(const struct taia *,const struct taia *);
+
+#define TAIA_PACK 16
+extern void taia_pack(char *,const struct taia *);
+extern void taia_unpack(const char *,struct taia *);
+
+#define TAIA_FMTFRAC 19
+extern unsigned int taia_fmtfrac(char *,const struct taia *);
+
+extern void taia_uint(struct taia *,unsigned int);
+
+#endif