mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05: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 *cmd);
|
|
int handle_command(char *cmd);
|
|
|
|
#endif
|