PaulStoffregen 10 年前
父节点
当前提交
e0589fa59c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      teensy3/avr/pgmspace.h

+ 1
- 1
teensy3/avr/pgmspace.h 查看文件

@@ -38,7 +38,7 @@ typedef uint32_t prog_uint32_t;
#define strncmp_P(a, b, n) strncmp((a), (b), (n))
#define strncasecmp_P(a, b, n) strncasecmp((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 strrchr_P(str, c) strrchr((str), (c))
#define strsep_P(strp, delim) strsep((strp), (delim))

正在加载...
取消
保存