zoro
shenhailuanma
我是zoro
全部博文(181)
2015年(1)
2013年(35)
2012年(39)
2011年(50)
2010年(56)
Ah_Kin
wyongzho
albert12
Tay_linu
wooin
liexuson
wywdtxdy
llIUNIU
ghxandsk
funnybos
bleakwin
格伯纳
浪花小雨
分类: LINUX
2010-12-22 20:26:15
strncpy源码
char *strncpy(char *dest, const char *src, size_t count){ char *tmp = dest; while (count) { if ((*tmp = *src) != 0) src++; tmp++; count--; } return dest;}
上一篇:strcpy源码
下一篇:压缩解压缩命令——tar
chinaunix网友2010-12-23 14:43:36
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com
登录 注册