You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
295 B
11 lines
295 B
//
|
|
// Created by MightyPork on 2017/08/20.
|
|
//
|
|
|
|
#ifndef ESP_VT100_FIRMWARE_APARS_STRING_H
|
|
#define ESP_VT100_FIRMWARE_APARS_STRING_H
|
|
|
|
// not const char so some edits can be made when processing
|
|
void apars_handle_string_cmd(char leadchar, char *buffer);
|
|
|
|
#endif //ESP_VT100_FIRMWARE_APARS_STRING_H
|
|
|