mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			283 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			283 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0-only */
 | 
						|
#ifndef LABWC_FILE_HELPERS_H
 | 
						|
#define LABWC_FILE_HELPERS_H
 | 
						|
#include <stdbool.h>
 | 
						|
 | 
						|
/**
 | 
						|
 * file_exists() - Test if file exists.
 | 
						|
 * @filename: Name of file to test.
 | 
						|
 */
 | 
						|
bool file_exists(const char *filename);
 | 
						|
 | 
						|
#endif /* LABWC_FILE_HELPERS_H */
 |