21 lines
327 B
C
21 lines
327 B
C
/*
|
|
* vim:ts=8:expandtab
|
|
*
|
|
* i3 - an improved dynamic tiling window manager
|
|
*
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
*
|
|
* See file LICENSE for license information.
|
|
*
|
|
*/
|
|
#include <xcb/xcb.h>
|
|
|
|
#include "data.h"
|
|
|
|
#ifndef _FONT_H
|
|
#define _FONT_H
|
|
|
|
i3Font *load_font(xcb_connection_t *c, const char *pattern);
|
|
|
|
#endif
|