blob: 1302e3a130eb60ea334a63bd2ce1ca24ff5d6486 (
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_tabdir(
const char *data, size_t size,
struct libparsesfnt_tabdir_entry *infop,
size_t first, size_t count)
{
return PARSE(LIBPARSESFNT_TABDIR_ENTRY__, 12, 0, 0, first, count, NULL);
}
|