aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/proto/font_file.h
blob: e57c0ab4f607874b3b7f39bdec579c34a3c56dd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <stdint.h>
#include <stddef.h>

#define ASCII_BITMAP_FONT_MAGIC 0xD184C274

typedef struct {
	uint32_t magic;
	uint16_t cw, ch;
	uint32_t nchars;
} ascii_bitmap_font_header;

/* vim: set ts=4 sw=4 tw=0 noet :*/