test_dict.c
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * test_dict.c - test Dict objects
  3.  *
  4.  * Lars Wirzenius
  5.  */
  6. #include "gwlib/gwlib.h"
  7. int main(void)
  8. {
  9.     Dict *dict;
  10.     Octstr *foo, *bar;
  11.     
  12.     gwlib_init();
  13.     
  14.     foo = octstr_imm("foo");
  15.     bar = octstr_imm("bar");
  16.     
  17.     dict = dict_create(10, NULL);
  18.     dict_put(dict, foo, bar);
  19.     info(0, "foo gives %s", octstr_get_cstr(dict_get(dict, foo)));
  20.     if (dict_key_count(dict) == 1)
  21. info(0, "there is but one foo.");
  22.     else
  23.         error(0, "key count is %ld, should be 1.", dict_key_count(dict));
  24.     dict_destroy(dict);
  25.     gwlib_shutdown();
  26.     return 0;
  27. }