test_octstr_immutables.c
资源名称:gateway-1.2.1 [点击查看]
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:
手机WAP编程
开发平台:
WINDOWS
- /*
- * test_octstr_immutables.c - simple testing of octstr_imm()
- */
- #include <stdio.h>
- #include "gwlib/gwlib.h"
- int main(int argc, char **argv)
- {
- Octstr *os;
- gwlib_init();
- if (optind >= argc) {
- os = octstr_imm("foo");
- } else {
- os = octstr_imm(argv[optind]);
- }
- /*
- * Note: don't destroy this, check that the log file has no
- * memory leaks.
- */
- octstr_dump(os, 0);
- gwlib_shutdown();
- return 0;
- }