File: dict.e

package info (click to toggle)
html-xml-utils 7.7-1.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,540 kB
  • sloc: ansic: 11,213; sh: 7,996; lex: 243; makefile: 192; yacc: 125
file content (8 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
typedef struct _Dictionary * Dictionary;
extern Dictionary dict_create(int initial_size);
extern void dict_delete(Dictionary d);
extern void dict_destroy_all(Dictionary d);
extern void dict_destroy(Dictionary d, const char *key);
extern int dict_add(Dictionary d, const char *key, const char *value);
extern const char* dict_find(Dictionary d, const char* key);
extern const char *dict_next(Dictionary d, const char *prev_key);