c - 字符串操作

// 字符串复制
char *my_strncpy(char *firstStr,const char *secondStr,int count) {
    char *tempStr = firstStr;
    while ((count-- > 0) && (*firstStr++ = *secondStr++))
        ;
    return tempStr;
}

// 使用
my_strncpy(str,"hello",4);
printf("%s",str);


作者头像
文墨书生创始人

上一篇:swift - 图片控件封装
下一篇:已是最新文章

发表评论