10 lines
243 B
Plaintext
10 lines
243 B
Plaintext
typedef struct __FlashStringHelper {
|
|
char c;
|
|
} __FlashStringHelper_t;
|
|
#ifndef F
|
|
# define F(expr) ((const __FlashStringHelper *)expr)
|
|
#endif
|
|
#ifndef FPSTR
|
|
# define FPSTR(expr) ((const __FlashStringHelper *)expr)
|
|
#endif
|
|
#define PROGMEM |