1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/command.h

12 lines
179 B
C
Raw Normal View History

2012-02-09 23:15:53 +00:00
#ifndef COMMAND_H
#define COMMAND_H
2012-02-10 23:53:13 +00:00
#define AWAIT_COMMAND 1
#define START_MAIN 2
#define QUIT_PROF 3
2012-02-18 22:51:08 +00:00
int handle_start_command(char *inp);
2012-02-09 23:15:53 +00:00
int handle_command(char *cmd);
#endif