mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fixed strncpy_P macro
This commit is contained in:
parent
148cf2629f
commit
0ecc486fee
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ e-mail : support@circuitsathome.com
|
|||
#define strncat_P(a, b, n) strncat((a), (b), (n))
|
||||
#endif
|
||||
#ifndef strncpy_P
|
||||
#define strncpy_P(a, b, n) strncmp((a), (b), (n))
|
||||
#define strncpy_P(a, b, n) strncpy((a), (b), (n))
|
||||
#endif
|
||||
#ifndef strpbrk_P
|
||||
#define strpbrk_P(str, chrs) strpbrk((str), (chrs))
|
||||
|
|
Loading…
Reference in a new issue