2017-11-23 13:20:41 +11:00
|
|
|
#include <stddef.h>
|
|
|
|
#include "sway/commands.h"
|
2017-12-05 20:40:55 +11:00
|
|
|
#include "sway/config.h"
|
2017-11-23 13:20:41 +11:00
|
|
|
|
|
|
|
void sway_terminate(int exit_code);
|
|
|
|
|
|
|
|
struct cmd_results *cmd_exit(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
sway_terminate(0);
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2017-11-23 13:20:41 +11:00
|
|
|
}
|