Files
dropshell/src/autocomplete.hpp
Your Name cf8a7db01d busted
2025-04-26 09:09:20 +12:00

16 lines
246 B
C++

#ifndef AUTOCOMPLETE_HPP
#define AUTOCOMPLETE_HPP
#include <string>
#include <vector>
namespace dropshell {
void autocomplete(const std::vector<std::string> &args);
void autocomplete_list_commands();
} // namespace dropshell
#endif