Compare commits
2 Commits
9eeed268f2
...
b1702c58d4
Author | SHA1 | Date | |
---|---|---|---|
/* User with id == 0 is a fake user from git author */
|
b1702c58d4 | ||
/* User with id == 0 is a fake user from git author */
|
8da631d2f4 |
@ -2433,35 +2433,35 @@ namespace ZNsMain
|
||||
|
||||
|
||||
|
||||
inline ZTypLLong ATOLL(const char* ApcChar){return ZfATOLL(ApcChar);}
|
||||
inline ZTypLong ATOL (const char* ApcChar){return ZfATOL (ApcChar);}
|
||||
inline ZTypIntI ATOI (const char* ApcChar){return ZfATOI (ApcChar);}
|
||||
inline double ATOD (const char* ApcChar){return ZfATOD (ApcChar);}
|
||||
inline ZTypLLong AtoLL(const char* ApcChar){return ZfATOLL(ApcChar);}
|
||||
inline ZTypLong AtoL (const char* ApcChar){return ZfATOL (ApcChar);}
|
||||
inline ZTypIntI AtoI (const char* ApcChar){return ZfATOI (ApcChar);}
|
||||
inline double AtoD (const char* ApcChar){return ZfATOD (ApcChar);}
|
||||
|
||||
inline ZTypLLong ATOLL(const char* ApcChar, ZTypIntI AI_Length)
|
||||
inline ZTypLLong AtoLL(const char* ApcChar, ZTypIntI AI_Length)
|
||||
{ return ZfAToInt<ZTypLLong>(ApcChar, AI_Length); }
|
||||
inline ZTypLong ATOL (const char* ApcChar, ZTypIntI AI_Length)
|
||||
inline ZTypLong AtoL (const char* ApcChar, ZTypIntI AI_Length)
|
||||
{ return ZfAToInt<ZTypLong >(ApcChar, AI_Length); }
|
||||
inline ZTypIntI ATOI (const char* ApcChar, ZTypIntI AI_Length)
|
||||
inline ZTypIntI AtoI (const char* ApcChar, ZTypIntI AI_Length)
|
||||
{ return ZfAToInt<ZTypIntI >(ApcChar, AI_Length); }
|
||||
|
||||
|
||||
|
||||
template<typename TTypeCh>
|
||||
inline ZTypLength ZftGetLength(const TTypeCh* ApcChar)
|
||||
template<typename TTypeCh> inline
|
||||
ZTypLength ZftGetLength(const TTypeCh* ApcChar)
|
||||
{
|
||||
if(ApcChar==0) return 0;
|
||||
|
||||
ZTypLength VL_Length=0 ;
|
||||
ZTypLength VL_Length=0;
|
||||
|
||||
while(*(ApcChar+VL_Length)!=_T('\0'))
|
||||
++VL_Length;
|
||||
/////////////////////////////////////
|
||||
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
|
||||
|
||||
return VL_Length;
|
||||
}/*
|
||||
template<typename TTypeCh>
|
||||
inline ZTypLength ZftGetLength(const TTypeCh* ApcChar) */
|
||||
template<typename TTypeCh> inline
|
||||
ZTypLength ZftGetLength(const TTypeCh* ApcChar) */
|
||||
|
||||
|
||||
template<typename TTypeSize, typename TTypeCh>
|
||||
|
@ -1484,7 +1484,7 @@ namespace ZNsMain
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
|
||||
|
||||
/*######*/ VP_Char[i] =0 ;
|
||||
TypeLength VB_Return = ZNsMain::ATOL(VP_Char);
|
||||
TypeLength VB_Return = ZNsMain::ZfATOL(VP_Char);
|
||||
|
||||
this->DeleteMem(VP_Char); return VB_Return;
|
||||
}/*
|
||||
@ -1646,7 +1646,7 @@ namespace ZNsMain
|
||||
|
||||
ZCStringBase& ConvertLLong()
|
||||
{
|
||||
ZNsMain::ZTypLLong LLongValue=ZNsMain::ATOLL(mpc_Data);
|
||||
ZNsMain::ZTypLLong LLongValue=ZNsMain::ZfATOLL(mpc_Data);
|
||||
|
||||
this->Invalidate(); return (*this)(LLongValue);
|
||||
}/*
|
||||
@ -1654,7 +1654,7 @@ namespace ZNsMain
|
||||
|
||||
ZCStringBase& ConvertLong()
|
||||
{
|
||||
ZNsMain::ZTypLLong LongValue=ZNsMain::ATOL(mpc_Data);
|
||||
ZNsMain::ZTypLLong LongValue=ZNsMain::ZfATOL(mpc_Data);
|
||||
|
||||
this->Invalidate(); return (*this)(LongValue);
|
||||
}/*
|
||||
|
Reference in New Issue
Block a user