Browse Source

Add prog_int64_t & prog_uint64_t

main
PaulStoffregen 8 years ago
parent
commit
a6b614bd1f
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      teensy3/avr/pgmspace.h

+ 2
- 0
teensy3/avr/pgmspace.h View File

typedef uint16_t prog_uint16_t; typedef uint16_t prog_uint16_t;
typedef int32_t prog_int32_t; typedef int32_t prog_int32_t;
typedef uint32_t prog_uint32_t; typedef uint32_t prog_uint32_t;
typedef int64_t prog_int64_t;
typedef uint64_t prog_uint64_t;


#define memchr_P(str, c, len) memchr((str), (c), (len)) #define memchr_P(str, c, len) memchr((str), (c), (len))
#define memcmp_P(a, b, n) memcmp((a), (b), (n)) #define memcmp_P(a, b, n) memcmp((a), (b), (n))

Loading…
Cancel
Save