foot/font.h

11 lines
267 B
C

#pragma once
#include <stdbool.h>
#include <threads.h>
#include "terminal.h"
bool font_from_name(const char *name, struct font *result);
bool font_glyph_for_utf8(
struct font *font, const char *utf8, struct glyph *glyph);
void font_destroy(struct font *font);