summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/lib/support/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/lib/support/util.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/lib/support/util.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/lib/support/util.h b/Build/source/texk/web2c/mfluadir/otfcc/lib/support/util.h
new file mode 100644
index 00000000000..a68b3e0ab74
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/lib/support/util.h
@@ -0,0 +1,41 @@
+#ifndef CARYLL_SUPPORT_UTIL_H
+#define CARYLL_SUPPORT_UTIL_H
+
+#ifndef __STDC_FORMAT_MACROS
+#define __STDC_FORMAT_MACROS
+#endif
+
+#include <inttypes.h>
+#include <stdbool.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <math.h>
+
+#include "dep/json-builder.h"
+#include "dep/json.h"
+#include "dep/sds.h"
+#include "dep/uthash.h"
+
+#include "caryll/ownership.h"
+#include "caryll/buffer.h"
+
+#include "otfcc/handle.h"
+#include "otfcc/primitives.h"
+#include "otfcc/options.h"
+
+#include "aliases.h"
+#include "otfcc-alloc.h"
+#include "element-impl.h"
+#include "vector-impl.h"
+
+#include "base64/base64.h"
+#include "json/json-ident.h"
+#include "json/json-funcs.h"
+#include "bin-io.h"
+#include "tag.h"
+
+#define OTFCC_CHR(a,b,c,d) ( ((a)<<24) | ((b)<<16) | ((c)<<8) | (d) )
+
+#endif