17 lines
303 B
C

#ifndef CLI_h
#define CLI_h
#include <stdbool.h>
#include "../CMDList.h"
typedef CLI_lineOutFn(char* line) CLI_lineoutFn_t;
// initilize and register the lineout print function
bool init(CLI_lineoutFn_t* lineOut, CMDList_t* cmdList);
// to recive a single caracter
bool CLI_charIn(char c);
#endif