clang-format changes

This commit is contained in:
skullY
2019-08-30 15:01:52 -07:00
committed by skullydazed
parent 61af76a10d
commit b624f32f94
502 changed files with 32252 additions and 39055 deletions
+5 -5
View File
@@ -2,12 +2,12 @@
#define PROGMEM_H 1
#if defined(__AVR__)
# include <avr/pgmspace.h>
# include <avr/pgmspace.h>
#else
# define PROGMEM
# define pgm_read_byte(p) *((unsigned char*)(p))
# define pgm_read_word(p) *((uint16_t*)(p))
# define pgm_read_dword(p) *((uint32_t*)(p))
# define PROGMEM
# define pgm_read_byte(p) *((unsigned char*)(p))
# define pgm_read_word(p) *((uint16_t*)(p))
# define pgm_read_dword(p) *((uint32_t*)(p))
#endif
#endif