TrimLeft C语言实现




/* delete space in the string */
ContentTrimLeft( 
char *    pDest,    const     char *    pSrc,  int  iSrcLen )
{
    
int  i=0;
    
const char * t = pSrc;  
    
while( i<
iSrcLen && (*(t++== ' ')  );  
    strcpy(pDest,   t-1);  
}

你可能感兴趣的:(c,语言)