commit 2025-08-21 14:06 ATOI => AtoI, ATOL => AtoL etc in ZMainHead.H and ZtCStringEx.H
This commit is contained in:
@ -2433,16 +2433,16 @@ namespace ZNsMain
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
inline ZTypLLong ATOLL(const char* ApcChar){return ZfATOLL(ApcChar);}
|
inline ZTypLLong AtoLL(const char* ApcChar){return ZfATOLL(ApcChar);}
|
||||||
inline ZTypLong ATOL (const char* ApcChar){return ZfATOL (ApcChar);}
|
inline ZTypLong AtoL (const char* ApcChar){return ZfATOL (ApcChar);}
|
||||||
inline ZTypIntI ATOI (const char* ApcChar){return ZfATOI (ApcChar);}
|
inline ZTypIntI AtoI (const char* ApcChar){return ZfATOI (ApcChar);}
|
||||||
inline double ATOD (const char* ApcChar){return ZfATOD (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); }
|
{ 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); }
|
{ 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); }
|
{ return ZfAToInt<ZTypIntI >(ApcChar, AI_Length); }
|
||||||
|
|
||||||
|
|
||||||
|
@ -1484,7 +1484,7 @@ namespace ZNsMain
|
|||||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
|
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
|
||||||
|
|
||||||
/*######*/ VP_Char[i] =0 ;
|
/*######*/ 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;
|
this->DeleteMem(VP_Char); return VB_Return;
|
||||||
}/*
|
}/*
|
||||||
@ -1646,7 +1646,7 @@ namespace ZNsMain
|
|||||||
|
|
||||||
ZCStringBase& ConvertLLong()
|
ZCStringBase& ConvertLLong()
|
||||||
{
|
{
|
||||||
ZNsMain::ZTypLLong LLongValue=ZNsMain::ATOLL(mpc_Data);
|
ZNsMain::ZTypLLong LLongValue=ZNsMain::ZfATOLL(mpc_Data);
|
||||||
|
|
||||||
this->Invalidate(); return (*this)(LLongValue);
|
this->Invalidate(); return (*this)(LLongValue);
|
||||||
}/*
|
}/*
|
||||||
@ -1654,7 +1654,7 @@ namespace ZNsMain
|
|||||||
|
|
||||||
ZCStringBase& ConvertLong()
|
ZCStringBase& ConvertLong()
|
||||||
{
|
{
|
||||||
ZNsMain::ZTypLLong LongValue=ZNsMain::ATOL(mpc_Data);
|
ZNsMain::ZTypLLong LongValue=ZNsMain::ZfATOL(mpc_Data);
|
||||||
|
|
||||||
this->Invalidate(); return (*this)(LongValue);
|
this->Invalidate(); return (*this)(LongValue);
|
||||||
}/*
|
}/*
|
||||||
|
Reference in New Issue
Block a user