blob: 9b8e608134123143ee763b56d00d7f11d028242a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <stdint.h>
#include <stddef.h>
struct glyph {
size_t offset;
uint8_t width;
};
struct font {
const struct glyph *ucs2glyph;
const uint8_t *data;
size_t max_ucs;
uint8_t height;
};
|