mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	 04b9dc2d30
			
		
	
	
		04b9dc2d30
		
	
	
	
	
		
			
			Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			464 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			464 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <sys/cdefs.h>
 | |
| #include <sys/types.h>
 | |
| 
 | |
| __BEGIN_DECLS
 | |
| 
 | |
| struct dirent {
 | |
|     ino_t d_ino;
 | |
|     off_t d_off;
 | |
|     unsigned short d_reclen;
 | |
|     unsigned char d_type;
 | |
|     char d_name[256];
 | |
| };
 | |
| 
 | |
| struct __DIR {
 | |
|     int fd;
 | |
|     struct dirent cur_ent;
 | |
|     char* buffer;
 | |
|     size_t buffer_size;
 | |
|     char* nextptr;
 | |
| };
 | |
| typedef struct __DIR DIR;
 | |
| 
 | |
| DIR* opendir(const char* name);
 | |
| int closedir(DIR*);
 | |
| struct dirent* readdir(DIR*);
 | |
| int dirfd(DIR*);
 | |
| 
 | |
| __END_DECLS
 |