aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.h
blob: 19fd3f337028a1a1a9c192caa16c64c492bedce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _SWAY_COMMANDS_H
#define _SWAY_COMMANDS_H
#include <stdbool.h>
#include "config.h"

struct cmd_handler {
	char *command;
	bool (*handle)(struct sway_config *config, int argc, char **argv);
};

int handle_command(struct sway_config *config, char *command);

#endif