* Change keyboard level include guards to `pragma once` And clean up a lot of layout macros * Oops * Remove dangling endif
		
			
				
	
	
		
			16 lines
		
	
	
		
			244 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			244 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "quantum.h"
 | |
| 
 | |
| #define LAYOUT( \
 | |
|     k00, k01, k02, \
 | |
|     k10, k11, k12, \
 | |
|     k20, k21, k22, \
 | |
|     k30, k31, k32 \
 | |
| ) { \
 | |
|     { k00, k01, k02 }, \
 | |
|     { k10, k11, k12 }, \
 | |
|     { k20, k21, k22 }, \
 | |
|     { k30, k31, k32 } \
 | |
| }
 |