shithub: fnt

ref: 17c753b3afc975b1e710c7f5c150f01e5f283b3c
dir: /otfpriv.h.in/

View raw version
typedef struct Range Range;

struct Otf {
	Otfile *f;
	Range *r;
	u8int *buf;
	int bufsz;
	int off;

	/* extra fields to simplify parsing */
	TableDirectory td;
	TableRecord *glyf;
	TableRecord *ebdt;
OTF_EXTRA_FIELDS
};

struct Range {
	int start;
	int len;
	int prevoff;
	Range *par;
};