我对以下代码中的 getline() 函数和参数定义有疑问。代码直接取自 K&R 第 1.9 章:“字符数组”。我在这里逐字转载。问题是,当我按原样编译程序时,我得到三个错误,(我已经在最后复制了)。当我在出现错误的三个地方将函数和函数参数定义更改为 get_line() (使用下划线而不是仅 getline)时,错误停止并且程序按预期运行。
我的问题是:
C 中发生了什么变化,因此 getline() 无效,但 get_line() 是函数定义的有效名称?
#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 lenght
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;
}
}
我得到的错误是:
./section 1.9.1.c:4:5: 错误:'getline' 的类型冲突;
int getline(int line[], int maxline);
./section 1.9.1.c:17:40: 错误:函数调用的参数太少,预期 3,有 2
while ((len = getline(line, MAXLINE)) > 0);
和./section 1.9.1.c:30:5: 错误:'getline' 的类型冲突
int getline(int s[], int lim)