Files
squeezelite-esp32/components/spotify/cspot/bell/libhelix-mp3/pgmspace.h
Philippe G 898998efb0 big merge
2021-12-18 21:04:23 -08:00

9 lines
281 B
C

#ifdef ESP8266
# include "pgmspace.h"
#elif defined(ESP_PLATFORM) && __has_include(<pgm_space.h>)
# include <pgm_space.h>
#else
# define PROGMEM
# define pgm_read_byte(addr) (*(const unsigned char *)(addr))
# define pgm_read_word(addr) (*(const unsigned short *)(addr))
#endif