blob: c78c12ae20f615be44d107634032fe08bc3ec3cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libparsesfnt_parse_bhed(
const char *data, size_t size,
struct libparsesfnt_bhed *infop,
const struct libparsesfnt_tabdir_entry *tag)
{
return PARSE(LIBPARSESFNT_BHED__, tag->offset, 0, 0, 0, 1, tag);
}
|