码迷,mamicode.com
首页 >  
搜索关键字:str库函数    ( 2个结果
操作系统:系统调用
1. 操作系统向上提供的接口: 1.1 给用户用的:GUI + 命令接口(联机命令接口、脱机命令接口) 1.2 给应用程序用的:程序接口(系统调用) 系统调用:是操作系统提供给应用程序(程序员、编程人员)使用的接口,可以理解为一种可供应用程序调用的特殊函数,应用程序可以通过系统调用来请求获得操作系统 ...
分类:其他好文   时间:2020-01-27 18:51:02    阅读次数:55
几个     str   库函数源代码
#include<stdio.h>#include<assert.h>char*my_strcat(char*dst,constchar*src){ char*cp=dst; assert(dst); assert(src); while(*cp) { cp++; } while(*cp++=*src++) { ; } returndst;}charstrncat(char*front,constchar*back,intcount){ char*start=front; asse..
分类:其他好文   时间:2015-11-03 00:52:16    阅读次数:133
2条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!