14 lines
195 B
C
14 lines
195 B
C
#ifndef COMMANDS_ECHO_H
|
|
#define COMMANDS_ECHO_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void echo_and_reset(char* buffer, int* index_ptr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // COMMANDS_ECHO_H
|