mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 15:39:31 +00:00
More LPC P-string macros
This commit is contained in:
parent
2ecb4fad72
commit
b04914fb72
1 changed files with 8 additions and 0 deletions
|
@ -212,3 +212,11 @@ inline void HAL_reboot() {} // reboot the board or restart the bootloader
|
|||
#ifndef strcmp_P
|
||||
#define strcmp_P(a, b) strcmp((a), (b))
|
||||
#endif
|
||||
|
||||
#ifndef strcat_P
|
||||
#define strcat_P(a, b) strcat((a), (b))
|
||||
#endif
|
||||
|
||||
#ifndef strcpy_P
|
||||
#define strcpy_P(a, b) strcpy((a), (b))
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue