codecamp

memccpy

 原型:extern void *memccpy(void *dest, void *src, unsigned char ch, unsigned int count);

 用法:#include <string.h>
 
 功能:由src所指内存区域复制不多于count个字节到dest所指内存区域,如果遇到字符ch则停止复制。
 
 说明:返回指向字符ch后的第一个字符的指针,如果src前n个字节中不存在ch则返回NULL。ch被复制。
 
 举例:


     // memccpy.c
     
     #include <syslib.h>
     #include <string.h>
     main()
     {
       char *s="Golden Global View";
       char d[20],*p;
       
       clrscr();
       
       p=memccpy(d,s,'x',strlen(s));
       if(p)
       {
         *p='\0';      // MUST Do This
         printf("Char found: %s.\n",d);
       }
       else
         printf("Char not found.\n");
       getchar();
       return 0;
     }      


bzero
memcpy
温馨提示
下载编程狮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; }