about summary refs log tree commit diff stats
path: root/command.h
blob: 219b4302208660a21a8b99cc20aa4f27fcc3c2e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef COMMAND_H
#define COMMAND_H

#define AWAIT_COMMAND 1
#define START_MAIN 2
#define QUIT_PROF 3

int handle_start_command(char *cmd);
int handle_command(char *cmd);

#endif