move quickcommands into parse_command()

This commit is contained in:
2024-07-10 23:37:49 +01:00
parent f60fc231b0
commit ff2970f4c5
3 changed files with 13 additions and 12 deletions

View File

@@ -18,6 +18,6 @@ void remove_last_part_of_path(char *fullpath);
char *kind_as_string(char *s, int kind, int n);
char *version_as_string(char *s, long v, int n);
bool is_comment(char *s);
struct quickcommand *command_in_quickcommands(const char *command, struct quickcommand *quickcommands, int n);
struct quickcommand *command_in_quickcommands(const char *command, const struct quickcommand *quickcommands, int n);
#endif /* __UTIL_H__ */