#include "zend.h"
#include "phpdbg_prompt.h"
-void do_quit(const char *params) /* {{{ */
+static void do_quit(const char *params) /* {{{ */
{
zend_bailout();
} /* }}} */
while (command && command->name) {
if (command->name_len == cmd_len
&& memcmp(cmd, command->name, cmd_len) == 0) {
- /* Command find */
+ /* Command found! */
command->handler(params);
return;
}
phpdbg_command_handler handler; /* Command handler */
} phpdbg_command;
-#endif
+void phpdbg_iteractive(int, char**);
+
+#endif /* PHPDBG_PROMPT_H */