会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
To be better
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
10 2016 档案
C语言常见字符串函数实现
摘要:#include #include #include int my_strlen(char *s) { assert(s!=NULL); int count=0; while(*s!='\0') { s++; count++; } return count; } char *my_strcpy(char *...
阅读全文
posted @
2016-10-01 14:30
mamahoohoo
阅读(272)
评论(0)
推荐(0)