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