19 lines
345 B
C
19 lines
345 B
C
#ifndef COMMANDS_H_
|
|
#define COMMANDS_H_
|
|
|
|
#include "config.h"
|
|
#include "parsing.h"
|
|
|
|
void executeCommand(CommandLine cmdLine);
|
|
|
|
void commandInit();
|
|
void commandRead(char* arg);
|
|
void commandWrite(char* arg);
|
|
void commandErase();
|
|
|
|
// TODO commands only for testing
|
|
void commandTestRead();
|
|
void commandTestWrite(char* arg);
|
|
|
|
#endif /* COMMANDS_H_ */
|