summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/lib/table/otl.h
blob: 4ef56672b3d9186f537fedbe1142f844b7961309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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