Separate font stuff to font.c, beautify Makefile

This commit is contained in:
Michael Stapelberg
2009-02-08 11:25:32 +01:00
parent aaa697494c
commit 979311deca
9 changed files with 110 additions and 194 deletions

10
font.h Normal file
View File

@ -0,0 +1,10 @@
#include <xcb/xcb.h>
#include "data.h"
#ifndef _FONT_H
#define _FONT_H
Font *load_font(xcb_connection_t *c, const char *pattern);
#endif