From 557ff9418ff811829c5f7f410c56cd552b605d10 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 18 Jul 2019 14:07:58 -0400 Subject: font_default(): New function And make font_find() return NULL if a font can't be found. --- (limited to 'src/font.h') diff --git a/src/font.h b/src/font.h index 27cc08e..c1abe26 100644 --- a/src/font.h +++ b/src/font.h @@ -27,6 +27,9 @@ #include struct font * +font_default(void) __attribute__((pure)); + +struct font * font_find(const char *name) __attribute__((pure)); int -- cgit v0.9.1