summaryrefslogtreecommitdiff
path: root/taia.h
diff options
context:
space:
mode:
Diffstat (limited to 'taia.h')
-rw-r--r--taia.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/taia.h b/taia.h
index 227321d..7440418 100644
--- a/taia.h
+++ b/taia.h
@@ -2,6 +2,11 @@
#define TAIA_H
#include <stdint.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <sys/time.h>
+
+#include "rnd.h"
struct tai {
uint64_t x;
@@ -156,4 +161,6 @@ static inline int taia_less(const struct taia *t, const struct taia *u)
return t->atto < u->atto;
}
+extern bool taia_looks_good(struct taia *arr_taia, struct taia *pkt_taia);
+
#endif /* TAIA_H */