mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-30 23:23:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Format all code with astyle
 | |
| 
 | |
| STYLEOPTS="--style=attach --indent-switches --convert-tabs \
 | |
| 		  --align-pointer=name --pad-header --pad-oper --unpad-paren --indent-labels"
 | |
| 
 | |
| astyle $STYLEOPTS */*.c
 | |
| astyle $STYLEOPTS */*/*.c
 | |
| astyle $STYLEOPTS */*/*.h
 | 
