aboutsummaryrefslogtreecommitdiff
path: root/src/wrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrapper.h')
-rw-r--r--src/wrapper.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wrapper.h b/src/wrapper.h
new file mode 100644
index 0000000..a57f71e
--- /dev/null
+++ b/src/wrapper.h
@@ -0,0 +1,11 @@
+#ifndef PINOCCHIO_WRAPPER_H
+#define PINOCCHIO_WRAPPER_H
+
+#include <stdbool.h>
+#include <stdint.h>
+
+void *xmalloc(size_t);
+void *xrealloc(void *, size_t);
+bool streq(const char *, const char *);
+
+#endif /* !PINOCCHIO_WRAPPER_H */