summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h b/Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h
new file mode 100644
index 00000000000..4ef56672b3d
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h
@@ -0,0 +1,18 @@
+#ifndef CARYLL_TABLE_OTL_H
+#define CARYLL_TABLE_OTL_H
+
+#include "otfcc/table/otl.h"
+
+otl_Subtable *otfcc_readOtl_subtable(uint8_t *data, uint32_t tableLength, uint32_t subtableOffset,
+ otl_LookupType lookupType, const glyphid_t maxGlyphs,
+ const otfcc_Options *options);
+
+table_OTL *otfcc_readOtl(const otfcc_Packet packet, const otfcc_Options *options,
+ const uint32_t tag, const glyphid_t maxGlyphs);
+void otfcc_dumpOtl(const table_OTL *table, json_value *root, const otfcc_Options *options,
+ const char *tag);
+table_OTL *otfcc_parseOtl(const json_value *root, const otfcc_Options *options, const char *tag);
+caryll_Buffer *otfcc_buildOtl(const table_OTL *table, const otfcc_Options *options,
+ const char *tag);
+
+#endif