summaryrefslogtreecommitdiff
path: root/command.c
blob: c7a7be812f4391e0eeca70a96647e68c735ae320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#include "command.h"

int command_handle(int fd){
	//TODO
	printf("Handling data on command fd\n");
	return 0;
}

void command_free(){
	//TODO
	printf("Shutting down any remaining commands\n");
}