This commit is contained in:
Glenn Maynard
2004-05-23 02:28:36 +00:00
parent c0adadd3a5
commit 6c039f9a67
2 changed files with 2 additions and 38 deletions
+1 -37
View File
@@ -1,8 +1,4 @@
#include "global.h"
// XmlFile.cpp: implementation of the XmlFile class.
//
//////////////////////////////////////////////////////////////////////
#include "XmlFile.h"
#include <iostream>
#include <sstream>
@@ -28,40 +24,8 @@ static const XENTITY x_EntityTable[] = {
PARSEINFO piDefault;
DISP_OPT optDefault;
XENTITYS entityDefault((LPXENTITY)x_EntityTable, sizeof(x_EntityTable)/sizeof(x_EntityTable[0]) );
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
//========================================================
// Name : _tcschrs
// Desc : same with strpbrk
// Param :
// Return :
//--------------------------------------------------------
// Coder Date Desc
// bro 2002-10-29
//========================================================
char* _tcschrs( const char* psz, const char* pszchs )
{
while( psz && *psz )
{
if( strchr( pszchs, *psz ) )
return (char*)psz;
psz++;
}
return NULL;
}
//========================================================
// Name : _tcsskip
// Desc : skip space
// Param :
// Return : skiped string
//--------------------------------------------------------
// Coder Date Desc
// bro 2002-10-29
//========================================================
// skip spaces
char* _tcsskip( const char* psz )
{
while( psz && *psz == ' ' ) psz++;