
added content to the readme added fff for function faking fixed coverage reports of the integrationtest added testscenarios to test the history buffer
34 lines
822 B
C
34 lines
822 B
C
/*
|
|
* 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
|
|
|
|
/** @} */
|
|
|