mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:22:43 +00:00 
			
		
		
		
	 8abfcb976d
			
		
	
	
		8abfcb976d
		
	
	
	
	
		
			
			This adds a stub for fnmatch and the following defined values: - FNM_PATHNAME - FNM_NOESCAPE - FNM_PERIOD - FNM_FILE_NAME - FNM_LEADING_DIR - FNM_CASEFOLD - FNM_EXTMATCH
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, the SerenityOS developers
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/Format.h>
 | |
| #include <fnmatch.h>
 | |
| 
 | |
| int fnmatch(char const*, char const*, int)
 | |
| {
 | |
|     dbgln("FIXME: Implement fnmatch()");
 | |
|     return 0;
 | |
| }
 |