kiwmi/include/commands.h

20 lines
497 B
C
Raw Normal View History

/* Copyright (c), Charlotte Meyer <dev@buffet.sh>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef KIWMI_COMMANDS_H
#define KIWMI_COMMANDS_H
#include <stdbool.h>
#include <stdio.h>
#include "kiwmi/server.h"
2019-04-15 09:37:37 +00:00
bool
handle_client_command(char *command, FILE *client, struct kiwmi_server *server);
#endif /* KIWMI_COMMANDS_H */