* Change keyboard level include guards to `pragma once` And clean up a lot of layout macros * Oops * Remove dangling endif
		
			
				
	
	
		
			15 lines
		
	
	
		
			186 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			186 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "quantum.h"
 | 
						|
 | 
						|
#define LAYOUT( \
 | 
						|
    k00, k10, k20, k30, k40, k50 \
 | 
						|
) { \
 | 
						|
    { k00 }, \
 | 
						|
    { k10 }, \
 | 
						|
    { k20 }, \
 | 
						|
    { k30 }, \
 | 
						|
    { k40 }, \
 | 
						|
    { k50 } \
 | 
						|
}
 |