commit 2025-08-21 14:06 ATOI => AtoI, ATOL => AtoL etc in ZMainHead.H and ZtCStringEx.H

This commit is contained in:
2025-08-21 14:07:08 +09:00
parent 0610328f2f
commit 8da631d2f4
2 changed files with 10 additions and 10 deletions

View File

@ -2433,16 +2433,16 @@ 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); }

View File

@ -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);
}/*