commit 2025-08-21 14:12 edit a bit in ZMainHead.H

This commit is contained in:
2025-08-21 14:13:00 +09:00
parent 777c3745a4
commit 9eeed268f2

View File

@ -2447,21 +2447,21 @@ namespace ZNsMain
template<typename TTypeCh> template<typename TTypeCh> inline
inline ZTypLength ZftGetLength(const TTypeCh* ApcChar) ZTypLength ZftGetLength(const TTypeCh* ApcChar)
{ {
if(ApcChar==0) return 0; if(ApcChar==0) return 0;
ZTypLength VL_Length=0 ; ZTypLength VL_Length=0;
while(*(ApcChar+VL_Length)!=_T('\0')) while(*(ApcChar+VL_Length)!=_T('\0'))
++VL_Length; ++VL_Length;
///////////////////////////////////// /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
return VL_Length; return VL_Length;
}/* }/*
template<typename TTypeCh> template<typename TTypeCh> inline
inline ZTypLength ZftGetLength(const TTypeCh* ApcChar) */ ZTypLength ZftGetLength(const TTypeCh* ApcChar) */
template<typename TTypeSize, typename TTypeCh> template<typename TTypeSize, typename TTypeCh>