String.c
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:
VC书籍
开发平台:
Visual C++
- ////////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "globals.h"
- ////////////////////////////////////////////////////////////////////////////////
- //
- //
- //
- void STR_AllocSetString(char** ppcDest, const char* pcSource, const BOOL bFreeExisting)
- {
- if(bFreeExisting == TRUE && *ppcDest)
- free(*ppcDest);
- if(pcSource)
- {
- int iStringLength;
- iStringLength = strlen(pcSource) + 1;
- *ppcDest = (char*)malloc(iStringLength);
- memcpy(*ppcDest, pcSource, iStringLength);
- }
- else
- *ppcDest = NULL;
- }
- //
- //
- //