aboutsummaryrefslogtreecommitdiffstats
path: root/include/commands.h
blob: c2046e130e0c9864f4ca8082493c9777054af5e4 (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);
};

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

#endif