可以直接拿来用
#include <stdio.h>
#include <string.h>
void stringact(char *str1,char *str2){//字符串连接
while(*str1!='\0'){str1++;}
if(*str1=='\0'){
while(*str2){
*str1=*str2;
str1++;
str2++;
}
*str1='\0';
}
}
void stringcpy(char *str1,char *str2){//字符串复制
while(*str1){
*str2=*str1;
str2++;
str1++;
}
*str2='\0';
}
void stringcmp(char *s1,char *s2){//字符串异同
while(*s1 && *s1==*s2){
s1++;
s2++;
}
return *s1-*s2;
}