16 lines
329 B
C
16 lines
329 B
C
/*
|
|
* vim:ts=4:sw=4:expandtab
|
|
*
|
|
* i3 - an improved dynamic tiling window manager
|
|
* © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
|
|
*
|
|
* commands.c: all command functions (see commands_parser.c)
|
|
*
|
|
*/
|
|
#ifndef _COMMANDS_PARSER_H
|
|
#define _COMMANDS_PARSER_H
|
|
|
|
char *parse_command(const char *input);
|
|
|
|
#endif
|