首页 > 其他 > 详细

strncmp实现方式之一

时间:2015-04-15 23:48:15      阅读:448      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!