我正在通过K& R C和GCC继续给我这个错误,例如1.9:
arrays.c:4:5: error: conflicting types for ‘getline’
/usr/include/stdio.h:675:20: note: previous declaration of ‘getline’ was here
arrays.c:27:5: error: conflicting types for ‘getline’
/usr/include/stdio.h:675:20: note: previous declaration of ‘getline’ was here
make: *** [arrays] Error 1
我的代码是:
#include <stdio.h>
#define MAXLINE 1000 /* maximum input line size */
int getline(char line[], int maxline);
void copy(char to[], char from[]);
/* print 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)) > 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;
}
我意识到错误表明'getline'函数原型和'getline'函数定义之间存在一些差异。我从这里复制并粘贴了另一个人的问题中的相同代码,以检查我是否输错了。它返回了相同的错误消息。我不知道我是否收到此错误,因为K&amp; R的代码已经过时,或者它与GCC编译代码的方式有关。请帮我找一下我做错了什么。
答案 0 :(得分:4)
将您的getline
功能重命名为其他功能。您在getline
中定义的stdio.h
函数出现命名错误。请注意,错误上写着:“ /usr/include/stdio.h :675:20:注意:以前的声明的'getline'就在这里”
getline
在stdio.h
中定义,带有以下签名:
ssize_t getline(char **lineptr, size_t *n, FILE *stream);
因为C没有命名空间,所以stdio.h
中的声明会在编译过程中逐字复制,从而导致类型不匹配。
我不确定历史,但很有可能getline
在写K&amp; R时不是标准库的一部分(事实上,正如@NigelHarper指出的那样,仍然不是C标准的一部分;它是POSIX的一部分。