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

strncmp实现方式之一

时间:2015-04-15 23:50:58      阅读:380      评论:0      收藏:0      [点我收藏+]

标签:

strncmp

int ho_strncmp(const char *s1, const char *s2, size_t n) {
    char *s = (char *)s1;

    int c;
    while (n-- && !(c = *s - *s2) && *s) 
        s++, s2++;

    return c;
}

int main() {

    printf("%d\n", ho_strncmp("https", "http", 5));
    printf("%d\n", strncmp("https", "http", 5));

    printf("%d\n", ho_strncmp("http", "https", 5));
    printf("%d\n", strncmp("http", "https", 5));

    printf("%d\n", ho_strncmp("http", "https", 4));
    printf("%d\n", strncmp("http", "https", 4));
    return 0;
}


strncmp实现方式之一

标签:

原文地址:http://my.oschina.net/guonaihong/blog/402118

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