mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	 04b9dc2d30
			
		
	
	
		04b9dc2d30
		
	
	
	
	
		
			
			Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdio.h>
 | |
| #include <sys/cdefs.h>
 | |
| 
 | |
| __BEGIN_DECLS
 | |
| 
 | |
| #define MOUNTED "/etc/mtab"
 | |
| #define MNTTAB "/etc/fstab"
 | |
| 
 | |
| struct mntent {
 | |
|     char* mnt_fsname;
 | |
|     char* mnt_dir;
 | |
|     char* mnt_type;
 | |
|     char* mnt_opts;
 | |
|     int mnt_freq;
 | |
|     int mnt_passno;
 | |
| };
 | |
| 
 | |
| struct mntent* getmntent(FILE* stream);
 | |
| 
 | |
| __END_DECLS
 |