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

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * test_octstr_immutables.c - simple testing of octstr_imm()
  3.  */
  4. #include <stdio.h>   
  5. #include "gwlib/gwlib.h"
  6. int main(int argc, char **argv) 
  7. {
  8.     Octstr *os;
  9.     gwlib_init();
  10.     if (optind >= argc) {
  11.         os = octstr_imm("foo");
  12.     } else {
  13.         os = octstr_imm(argv[optind]);
  14.     }
  15.     /* 
  16.      * Note: don't destroy this, check that the log file has no
  17.      * memory leaks.
  18.      */
  19.     octstr_dump(os, 0);
  20.     gwlib_shutdown();
  21.     return 0;
  22. }