blob: da238cd1d2e95c384cfc978096f6bbe7a32716b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* uuterm, Copyright (C) 2006 Rich Felker; licensed under GNU GPL v2 only */
#include <stddef.h>
struct ucf
{
int w, h, s, S;
const unsigned char *ranges, *ctab, *gmap, *glyphs;
unsigned nranges;
};
int ucf_init(struct ucf *, const unsigned char *, size_t);
int ucf_lookup(struct ucf *, int, const unsigned *,
const unsigned *, const unsigned *, int);
|