We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0f060 commit 3926f79Copy full SHA for 3926f79
src/commands.c
@@ -22,7 +22,7 @@ static inline bool is_help(const char* command) {
22
return laco_is_match(help_matches, command);
23
}
24
25
-void handle_command(struct LacoState* laco, char* line) {
+void laco_handle_command(struct LacoState* laco, char* line) {
26
if(laco != NULL && line != NULL) {
27
const char* command = line + 1;
28
src/commands.h
@@ -7,6 +7,6 @@ struct LacoState;
7
* Gets passed ever line to see if it matches one of the REPL command. If it
8
* does, that command will be executed.
9
*/
10
-void handle_command(struct LacoState* laco, char* line);
+void laco_handle_command(struct LacoState* laco, char* line);
11
12
#endif /* LACO_COMMANDS_H */
0 commit comments