shellmatta_opt.h 822 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) 2019 - 2021 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_opt.h
  10. * @brief option parser implementation of the shellmatta
  11. * @author Stefan Strobel <stefan.strobel@shimatta.net>
  12. */
  13. /**
  14. * @addtogroup shellmatta_opt
  15. * @{
  16. */
  17. #ifndef _SHELLMATTA_OPT_H_
  18. #define _SHELLMATTA_OPT_H_
  19. #include "shellmatta.h"
  20. #include <stdint.h>
  21. void shellmatta_opt_init( shellmatta_instance_t *inst,
  22. uint32_t argStart);
  23. void shellmatta_opt_reInit( shellmatta_instance_t *inst);
  24. #endif
  25. /** @} */