/* * Copyright (c) 2019 - 2021 Stefan Strobel * * 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 */ /** * @addtogroup shellmatta_opt * @{ */ #ifndef _SHELLMATTA_OPT_H_ #define _SHELLMATTA_OPT_H_ #include "shellmatta.h" #include void shellmatta_opt_init( shellmatta_instance_t *inst, uint32_t argStart); void shellmatta_opt_reInit( shellmatta_instance_t *inst); #endif /** @} */