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-13 13:04:45 -05:00
|
|
|
#ifndef _UTIL_H
|
|
|
|
#define _UTIL_H
|
|
|
|
|
2009-02-13 19:36:12 -05:00
|
|
|
void start_application(const char *command);
|
2009-02-13 13:04:45 -05:00
|
|
|
void check_error(xcb_connection_t *connection, xcb_void_cookie_t cookie, char *err_message);
|
|
|
|
|
|
|
|
#endif
|