123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright (c) 2019 - 2021 Stefan Strobel <stefan.strobel@shimatta.net>
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
- */
- /**
- * @file shellmatta_opt.h
- * @brief option parser implementation of the shellmatta
- * @author Stefan Strobel <stefan.strobel@shimatta.net>
- */
- /**
- * @addtogroup shellmatta_opt
- * @{
- */
- #ifndef _SHELLMATTA_OPT_H_
- #define _SHELLMATTA_OPT_H_
- #include "shellmatta.h"
- #include <stdint.h>
- void shellmatta_opt_init( shellmatta_instance_t *inst,
- uint32_t argStart);
- void shellmatta_opt_reInit( shellmatta_instance_t *inst);
- #endif
- /** @} */
|