/** ****************************************************************************** * @file commands.h * @brief Header for command.c file, the command interpreter, a generic one ****************************************************************************** * @author: Thomas Kuschel KW4NZ * created 2022-06-04 * ******************************************************************************/ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __COMMANDS_H_ #define __COMMANDS_H_ #ifdef __cplusplus extern "C" { #endif //struct command_ctx_s *command_inst; typedef struct command_ctx_s *command_inst_t; /* function prototypes */ int not_implemented(command_inst_t inst, char *args); #ifdef __cplusplus } #endif #endif /* __COMMANDS_H_ */