PaulStoffregen 10 years ago
parent
commit
e0589fa59c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy3/avr/pgmspace.h

+ 1
- 1
teensy3/avr/pgmspace.h View File

#define strncmp_P(a, b, n) strncmp((a), (b), (n)) #define strncmp_P(a, b, n) strncmp((a), (b), (n))
#define strncasecmp_P(a, b, n) strncasecmp((a), (b), (n)) #define strncasecmp_P(a, b, n) strncasecmp((a), (b), (n))
#define strncat_P(a, b, n) strncat((a), (b), (n)) #define strncat_P(a, b, n) strncat((a), (b), (n))
#define strncpy_P(a, b, n) strncmp((a), (b), (n))
#define strncpy_P(a, b, n) strncpy((a), (b), (n))
#define strpbrk_P(str, chrs) strpbrk((str), (chrs)) #define strpbrk_P(str, chrs) strpbrk((str), (chrs))
#define strrchr_P(str, c) strrchr((str), (c)) #define strrchr_P(str, c) strrchr((str), (c))
#define strsep_P(strp, delim) strsep((strp), (delim)) #define strsep_P(strp, delim) strsep((strp), (delim))

Loading…
Cancel
Save