summaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 7e5aff7..ffaa78c 100644
--- a/src/common.h
+++ b/src/common.h
@@ -22,11 +22,13 @@
22#define COMMON_H 22#define COMMON_H
23 23
24#include <stddef.h> 24#include <stddef.h>
25#include "time64.h"
25 26
26#define MAC_EPOCH 978307200 27#define MAC_EPOCH 978307200
27 28
28size_t dtostr(char *buf, size_t bufsize, double realval); 29size_t dtostr(char *buf, size_t bufsize, double realval);
29int num_digits_i(int64_t i); 30int num_digits_i(int64_t i);
30int num_digits_u(uint64_t i); 31int num_digits_u(uint64_t i);
32int plist_real_to_time64(double realval, Time64_T *timev);
31 33
32#endif 34#endif