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