mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	* Clean up includes for glcdfont headers * Remove pragma once, most of these are not headers * Missed these
		
			
				
	
	
		
			11 lines
		
	
	
		
			245 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			245 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#if defined(__AVR__)
 | 
						|
#    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))
 | 
						|
#endif
 |