String.c
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
- ////////////////////////////////////////////////////////////////////////////////
- #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;
- }
- //
- //
- //