codecamp

memicmp

 原型:extern int memicmp(void *buf1, void *buf2, unsigned int count);
       
 用法:#include <string.h>
 
 功能:比较内存区域buf1和buf2的前count个字节但不区分字母的大小写。
 
 说明:memicmp同memcmp的唯一区别是memicmp不区分大小写字母。
       当buf1<buf2时,返回值<0
       当buf1=buf2时,返回值=0
       当buf1>buf2时,返回值>0
 
 举例:

     // memicmp.c
     
     #include <syslib.h>
     #include <string.h>
     main()
     {
       char *s1="Hello, Programmers!";
       char *s2="Hello, programmers!";
       int r;
       
       clrscr();
       
       r=memicmp(s1,s2,strlen(s1));
       if(!r)
         printf("s1 and s2 are identical");
       else
       if(r<0)
         printf("s1 less than s2");
       else
         printf("s1 greater than s2");
       
       getchar();
       return 0;
     }


memcmp
memmove
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

alloi动态内存

stdio输入输出函数

stdlib基础库函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }