mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 07:26:22 +00:00
12 lines
179 B
C
12 lines
179 B
C
#ifndef COMMAND_H
|
|
#define COMMAND_H
|
|
|
|
#define AWAIT_COMMAND 1
|
|
#define START_MAIN 2
|
|
#define QUIT_PROF 3
|
|
|
|
int handle_start_command(char *inp);
|
|
int handle_command(char *inp);
|
|
|
|
#endif
|