1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00
profanity/command.h

12 lines
179 B
C
Raw Normal View History

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