File: dict.e

package info (click to toggle)
html-xml-utils 6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,620 kB
  • sloc: ansic: 10,027; sh: 2,135; lex: 189; yacc: 125; perl: 123; makefile: 122
file content (8 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
 typedef struct _Dictionary * Dictionary;
 Dictionary dict_create(int initial_size);
 void dict_delete(Dictionary d);
 void dict_destroy_all(Dictionary d);
 void dict_destroy(Dictionary d, const char *key);
 int dict_add(Dictionary d, const char *key, const char *value);
 const char* dict_find(Dictionary d, const char* key);
 const char *dict_next(Dictionary d, const char *prev_key);