mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								options="\
							 | 
						||
| 
								 | 
							
									--enable=all \
							 | 
						||
| 
								 | 
							
									--suppress=missingInclude \
							 | 
						||
| 
								 | 
							
									--suppress=unusedFunction \
							 | 
						||
| 
								 | 
							
									--suppress=unmatchedSuppression \
							 | 
						||
| 
								 | 
							
								"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								for f in  $(find src/ -name "*.c"); do
							 | 
						||
| 
								 | 
							
									cppcheck ${options} "${f}"
							 | 
						||
| 
								 | 
							
								done
							 | 
						||
| 
								 | 
							
								
							 |