12 lines
		
	
	
		
			138 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			138 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef ACC_UTIL_HASHMAP
 | |
| #define ACC_UTIL_HASHMAP
 | |
| 
 | |
| struct hashmap {
 | |
| 	int size;
 | |
| 	int cap;
 | |
| 	linklist *data;
 | |
| };
 | |
| 
 | |
| void hashmap_init();
 | |
| 
 | |
| #endif |