mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef DYNOS_CMAP_CPP_H
 | |
| #define DYNOS_CMAP_CPP_H
 | |
| #ifndef __cplusplus
 | |
| 
 | |
| void* hmap_create(bool useUnordered);
 | |
| void* hmap_get(void* map, int64_t k);
 | |
| void hmap_put(void* map, int64_t k, void* v);
 | |
| void hmap_del(void* map, int64_t k);
 | |
| void hmap_clear(void* map);
 | |
| void hmap_destroy(void* map);
 | |
| size_t hmap_len(void* map);
 | |
| 
 | |
| void* hmap_begin(void* map);
 | |
| void* hmap_next(void* map);
 | |
| 
 | |
| #endif
 | |
| #endif | 
