2011-10-26 00:19:38 +04:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 03:17:56 +03:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2011-10-26 00:19:38 +04:00
|
|
|
*
|
|
|
|
* cmdparse.y: the parser for commands you send to i3 (or bind on keys)
|
|
|
|
*
|
|
|
|
*/
|
2013-12-29 06:11:50 +04:00
|
|
|
#pragma once
|
2010-07-17 17:15:37 +04:00
|
|
|
|
2016-10-11 10:13:35 +03:00
|
|
|
#include <config.h>
|
|
|
|
|
2010-07-17 17:15:37 +04:00
|
|
|
char *parse_cmd(const char *new);
|