diff options
Diffstat (limited to 'gui/debugger.h')
-rw-r--r-- | gui/debugger.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/debugger.h b/gui/debugger.h index bc9306c1de..b12bd2761e 100644 --- a/gui/debugger.h +++ b/gui/debugger.h @@ -204,6 +204,12 @@ protected: private: void enter(); + /** + * Splits up the input into individual parameters + * @remarks Adapted from code provided by torek on StackOverflow + */ + void splitCommand(char *input, int &argc, const char **argv); + bool parseCommand(const char *input); bool tabComplete(const char *input, Common::String &completion) const; |