summaryrefslogtreecommitdiff
path: root/src/intmetrics.h
blob: 5b8546da5e81b9d71995c1557f3c8a8597fc016d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _TTF2F_INTMETRICS_H_
#define _TTF2F_INTMETRICS_H_

#include "utils.h"

struct glyph;
struct font_metrics;

ttf2f_result write_intmetrics(const char *savein,
		const char *name, struct glyph *glyph_list, 
		int list_size, struct font_metrics *metrics,
		void (*callback)(int progress));

#endif