当前位置:编程学习 > C/C++ >>

C语言字符串操作函数-原型

1、strcat


[cpp]
char *strcat(char *strDest, const char *strScr) //将源字符串加const,表明其为输入参数  

    char * address = strDest;             //该语句若放在assert之后,编译出错  
     
    assert((strDest != NULL) && (strScr != NULL)); //对源地址和目的地址加非0断言  
     
    while(*strDest)             //是while(*strDest!='\0')的简化形式  
    {                        //若使用while(*strDest++),则会出错,因为++是不受循环  
        strDest++;               //约束的。所以要在循环体内++;因为要是*strDest最后指  
    }                        //向该字符串的结束标志’\0’。  
 
    while(*strDest++ = *strScr++) //是while((*strDest++ = *strScr++)!='\0')的简化形式  
    { 
        NULL;                 //该循环条件内可以用++,  
    }                          //此处可以加语句*strDest='\0';有无必要?  
     
    return address;               //为了实现链式操作,将目的地址返回  
 

char *strcat(char *strDest, const char *strScr) //将源字符串加const,表明其为输入参数
{
    char * address = strDest;             //该语句若放在assert之后,编译出错
   
    assert((strDest != NULL) && (strScr != NULL)); //对源地址和目的地址加非0断言
   
    while(*strDest)             //是while(*strDest!='\0')的简化形式
    {                        //若使用while(*strDest++),则会出错,因为++是不受循环
        strDest++;               //约束的。所以要在循环体内++;因为要是*strDest最后指
    }                        //向该字符串的结束标志’\0’。

    while(*strDest++ = *strScr++) //是while((*strDest++ = *strScr++)!='\0')的简化形式
    {
        NULL;                 //该循环条件内可以用++,
    }                          //此处可以加语句*strDest='\0';有无必要?
   
    return address;               //为了实现链式操作,将目的地址返回

}
2、strcmp


[cpp]
int __cdecl strcmp (    
    const char * src,    
    const char * dst    
    )    
{    
    int ret = 0;    
     
    while(!(ret = *(unsigned char *)src - *(unsigned char *)dst) && *dst)    
        ++src, ++dst;    
     
    if ( ret < 0 )    
        ret   =   -1   ;    
    else if ( ret > 0 )    
        ret = 1 ;    
     
    return(ret);    

int __cdecl strcmp (  
 const char * src,  
 const char * dst  
 )  
{  
 int ret = 0;  
   
 while(!(ret = *(unsigned char *)src - *(unsigned char *)dst) && *dst)  
  ++src, ++dst;  
   
 if ( ret < 0 )  
  ret   =   -1   ;  
 else if ( ret > 0 )  
  ret = 1 ;  
   
 return(ret);  
}

 


[cpp]
int strcmp(const char *dest, const char *source) 

   assert((NULL != dest) && (NULL != source)); 
   while (*dest && *source && (*dest == *source)) 
           { 
                    dest ++; 
                   source ++; 
           } 
   return *dest - *source; 
/*如果dest > source,则返回值大于0,如果dest = source,则返回值等于0,如果dest  < source ,则返回值小于0。*/ 

int strcmp(const char *dest, const char *source)
{
   assert((NULL != dest) && (NULL != source));
   while (*dest && *source && (*dest == *source))
           {
                    dest ++;
                   source ++;
           }
   return *dest - *source;
/*如果dest > source,则返回值大于0,如果dest = source,则返回值等于0,如果dest  < source ,则返回值小于0。*/
}

3、strcpy


[cpp]
char *strcpy(char *strDestination,const char *strSource) 

    assert(strDestination!=NULL && strSource!=NULL); 
    char *strD=strDestination; 
    while ((*strD++=*strSource++)!='\0'); 
    return strDestination; 

char *st

补充:软件开发 , C语言 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,