mirror of
				https://git.haproxy.org/git/haproxy.git/
				synced 2025-10-31 16:41:01 +01:00 
			
		
		
		
	This patch adds minimalistic definitions to implement dictionary new data structure which is an ebtree of ebpt_node structs with strings as keys. Note that this has nothing to see with real dictionary data structure (maps of keys in association with values).
		
			
				
	
	
		
			10 lines
		
	
	
		
			199 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			199 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _PROTO_DICT_H
 | |
| #define _PROTO_DICT_H
 | |
| 
 | |
| #include <types/dict.h>
 | |
| 
 | |
| struct dict *new_dict(const char *name);
 | |
| struct dict_entry *dict_insert(struct dict *d, char *str);
 | |
| 
 | |
| #endif  /* _PROTO_DICT_H */
 |