mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-07 04:06:07 -05:00
9 lines
251 B
C
9 lines
251 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "terminal.h"
|
|
|
|
bool font_from_name(const char *name, struct font *result);
|
|
bool font_glyph_for_utf8(
|
|
const struct font *font, const char *utf8, struct glyph *glyph);
|
|
void font_destroy(struct font *font);
|