我正在尝试创建自己的字符串函数,但我似乎被困在了这一点上。下面是我到目前为止制作一个字符串并打印它并返回大小的内容。但是我需要创建一个函数,将指针传递给一个字符字符串以及一个字符,并返回该字符在字符串中出现的次数。我正在尝试从此函数调用函数 make_string 但无法使其工作。.h 文件仅具有预先列出的功能。对此的任何帮助将不胜感激。谢谢!
#include "readLineUtilities.h"
int make_string(char **line)
{
char *a,b;
int i,size=0;
a = (char *) malloc(sizeof(char));
b = getchar();
while( b != '\n' && size < MAX)
{
*(a+size) = b; //remember at this point size = 0
size++;
b = getchar();
a = realloc(a,size+1);
}
*(a+size) = '\0'; //end of string marker so no need to return the size directly
*line = a;
return size;
}
int char_in_string (char *line, char c) {
make_string(*line);
}
void print_string(char *line, int size){
char *a;
int i;
a = line;
for (i=0;i<size;i++)
printf("%c",*(a+i)); //no end of line
printf("\n");
}
int length_string(char *line){
int size = 0;
char *c,b;
c = line;
if ( c == NULL){
printf("line is null\n");
return size;
}
while (*(c + size) != '\0'){
size++;
}
return size;
}