commit 2025-08-20 14:46 add GeLenght() in ZtCStringBase

This commit is contained in:
2025-08-20 14:46:30 +09:00
parent 15a37c761e
commit e554fd25f3
2 changed files with 271 additions and 306 deletions

View File

@ -2102,7 +2102,7 @@ namespace ZNsMain
//////////////////////////////////////////////
{
public:
TType* NewMem (size_t AL_AllocSize){return (TType*)::malloc(AL_AllocSize) ;}
TType* NewMem (size_t AL_AllocSize){return (TType*)::malloc(AL_AllocSize) ;}
TType* NewArrMem(size_t AL_AllocSize){return (TType*)::malloc(AL_AllocSize*sizeof(TType));}
public:
void DeleteMem(void* AP_Void){if(AP_Void!=0) ::free(AP_Void);}
@ -2474,7 +2474,7 @@ namespace ZNsMain
inline ZTypLength ZftLength(const TTypeCh* ApcChar) */
template<typename TTypeSize, typename TTypeCh>
inline TTypeSize ZfLengthType(const TTypeCh* ApcChar)
inline TTypeSize ZftLengthType(const TTypeCh* ApcChar)
{
return ZftGetLengthType<TTypeSize, TTypeCh>(ApcChar);
}/*

File diff suppressed because it is too large Load Diff