使用原型后C中的冲突类型错误

时间:2018-01-26 05:52:52

标签: c xcode getline

我尝试使用Xcode在K& R(p30)中运行示例代码。我为getline'出现了相互冲突的类型错误当我致电getline时,我被告知我应该将3个参数传递给它,而不是2。我很困惑。

#include <stdio.h>
#define MAXLINE 1000 /* maximum input line length */

int getline(char line[], int maxline);
void copy(char to[], char from[]);

/* print the longest input line */
int main()
{
    int len; /* current line length */
    int max; /* maximum length seen so far */
    char line[MAXLINE]; /* current input line */
    char longest[MAXLINE]; /* longest line saved here */

    max = 0;
    while ((len = getline(line[MAXLINE], MAXLINE)) > 0)
        if (len > max) {
            max = len;
            copy(longest, line);
        }
    if (max > 0) /* there was a line */
        printf("%s", longest);
    return 0;
}

/* getline: read a line into s, return length */
int getline(char s[],int lim)
{
    int c, i;

    for (i=0; i < lim-1 && (c=getchar())!=EOF && c!='\n'; ++i)
        s[i] = c;
    if (c == '\n') {
        s[i] = c;
        ++i;
    }
    s[i] = '\0';
    return i;
}

/* copy: copy 'from' into 'to'; assume to is big enough */
void copy(char to[], char from[])
{
    int i;

    i = 0;
    while ((to[i] = from[i]) != '\0')
        ++i;
}

2 个答案:

答案 0 :(得分:6)

自编写K&amp; R以来,POSIX增加了一个函数getline() 它与K&amp; R中的界面不同:

ssize_t getline(char **restrict lineptr, size_t *restrict n, FILE *restrict stream);

唯一合理的方法是重命名从书中复制的代码中的函数。

(添加时这是一件令人讨厌的事情 - 我在K&amp; R代码上使用了20年以上的变体,但是没有必要对抗它。)

答案 1 :(得分:0)

我认为你的args应该有相同的名称:

int getline(char line[], int maxline);
int getline(char s[],int lim)

另外,如上所述,getline是一个已存在于stdio库中的函数。 您应该重命名您的func,如

int my_getline

或其他什么。

祝你好运!