公告板
版本库
filestore
活动
搜索
登录
hicSDK
/
nvrServer
C++版本的nvr Server
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
update
wangzhengquan
2020-09-10
591aacee97f4a6486631c38a6b418e20b2c4109c
[hicSDK/nvrServer.git]
/
test
/
test.c
1
2
3
4
5
6
7
8
#include "usg_common.h"
#include "usg_typedef.h"
int main() {
char *str = "123";
char *str2 = strdup(str);
free(str2);
}