int main(int argc, const char * argv[]) {
int ch;
while((ch = getchar()) != EOF) {
putchar(ch);
}
printf("EOF\n");
return 0;
}
char a[][10] = {};
表示a[0] --> char [10]
char *a[]
a[0] --> char *
$ln -s a.out my
$busybox
size_t strlen(const char *s);
size_t mylen(const char *s) {
int cnt = 0;
while(s[idx] != '\0') {
idx++;
}
return idx;
}
int strcmp(const char *s1, const char *s2);
int mycmp(const char *s1, const char *s2) {
for(int i = 0; i < strlen(s1); i++) {
for (int j = 0; j < strlen(s2); j++) {
if (s1[i] == s2[j]) {
continue;
}
if (s1[i] > s2[j]) {
return 1;
}
if (s1[i] < s2[j]) {
return -1;
}
}
}
return 0;
}
int mycmp2(const char *s1, const char *s2) {
//int idx = 0;
//while(s1[idx] == s2[idx] && s1[idx] != '\0') {
// idx++;
//}
while (*s1 == *s2 && *s1 != '\0') {
s1++; s2++;
}
return *s1 - *s2;
//return s1[idx] - s2[idx];
}
char *strcpy(char *restrict dst, const char *restrict src);
//restrict 表示dst和src不能重叠
//把src的内容拷贝到ds
char *dst = (char*)malloc(strlen(src)+1);
strcpy(dst,src);
char *mycpy(char * restrict dst, const char * restrict src) {
int idx = 0;
// while(src[idx] != '\0') {
// dst[idx] = src[idx];
// idx++;
// }
// dst[idx] = '\0';
return dst;
char *rest = dst;
while(*dst++ = *src++) {
NULL;
}
*dst = '\0';
return rest;
}
查找字符
char *strchr(const char *s, int c); // 左找
char *strrchr(const char *s, int c); // 右找
查找字符串
char *strstr(const char *s1, const char *s2);
char *strcasestr(const char *s1, const char *s2); //忽略大小写
字符串
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 实现如下函数:class Solution {public int soluition(String A, Str...
- 这么简单的使用,每次用的时候都想不起来啊,是不是要拖出去打死? 1、截取字符串 2、匹配字符串 3、分隔字符串 4...
- 1.截取字符串 NSString*string =@"sdfsfsfsAdfsdf"; string = [str...
- 1.截取字符串 NSString*string =@"sdfsfsfsAdfsdf"; string = [str...