2009-02-14 02:33:31 +01: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 11:25:32 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
|
|
|
#include "data.h"
|
|
|
|
|
|
|
|
#ifndef _FONT_H
|
|
|
|
#define _FONT_H
|
|
|
|
|
2009-02-10 05:50:35 +01:00
|
|
|
i3Font *load_font(xcb_connection_t *c, const char *pattern);
|
2009-02-08 11:25:32 +01:00
|
|
|
|
|
|
|
#endif
|