码迷,mamicode.com
首页 > 其他好文 > 详细

strcmp

时间:2014-11-04 12:21:53      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   ar   for   sp   div   

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
 
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。*/
}

strcmp

标签:des   style   blog   http   color   ar   for   sp   div   

原文地址:http://www.cnblogs.com/hellogiser/p/strcmp.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!