commit 2025-08-28 20:56 edit a bit ZCppMain/ZtCStringEx.H
This commit is contained in:
@ -2832,19 +2832,18 @@ namespace ZNsMain
|
||||
|
||||
while(VL_Index<=VL_Loop)
|
||||
{
|
||||
TypeLength j;
|
||||
TypeLength j=0;
|
||||
|
||||
for(j=0; j<AL_SearchLen; ++j) /*++++*/
|
||||
for(; j<AL_SearchLen; ++j)
|
||||
{
|
||||
if(APC_OriginChar[VL_Index+j]!=APC_SearchChar[j]) break;
|
||||
}
|
||||
/*++++++++++++++++++++++++++++++++++*/
|
||||
if( APC_OriginChar[VL_Index+j] != APC_SearchChar[j] )
|
||||
{ break; }
|
||||
/*=================================================*/
|
||||
}/*
|
||||
for(; j<AL_SearchLen; ++j)*/
|
||||
|
||||
if(j!=AL_SearchLen){ ++VL_Index; continue; } // 찾지 못했다면
|
||||
|
||||
if(j!=AL_SearchLen) // 찾지 못했다면
|
||||
{
|
||||
++VL_Index; continue;
|
||||
}
|
||||
/*===============*/
|
||||
|
||||
// 찾았다면...
|
||||
|
||||
|
Reference in New Issue
Block a user