2009-02-13 20:33:31 -05:00
|
|
|
/*
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
*/
|
2009-02-08 05:25:32 -05:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
|
|
|
#include "data.h"
|
|
|
|
|
|
|
|
#ifndef _FONT_H
|
|
|
|
#define _FONT_H
|
|
|
|
|
2009-02-09 23:50:35 -05:00
|
|
|
i3Font *load_font(xcb_connection_t *c, const char *pattern);
|
2009-02-08 05:25:32 -05:00
|
|
|
|
|
|
|
#endif
|