shellmatta_autocomplete.h 622 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2019 Stefan Strobel <stefan.strobel@shimatta.net>
  3. *
  4. * This Source Code Form is subject to the terms of the Mozilla Public
  5. * License, v. 2.0. If a copy of the MPL was not distributed with this
  6. * file, You can obtain one at https://mozilla.org/MPL/2.0/.
  7. */
  8. /**
  9. * @file shellmatta_autocomplete.h
  10. * @brief autocomplete function of shellmatta
  11. * @author Stefan Strobel <stefan.strobel@shimatta.net>
  12. */
  13. /**
  14. * @addtogroup shellmatta_api
  15. * @{
  16. */
  17. #ifndef _SHELLMATTA_AUTOCOMPLETE_H_
  18. #define _SHELLMATTA_AUTOCOMPLETE_H_
  19. void autocomplete_run(shellmatta_instance_t *inst);
  20. #endif
  21. /** @} */