0

我在课堂上收到的关于创建头文件的解释有些不清楚。我的教授说,创建一个头文件,你要包含函数原型。我不断收到包含指针标记的函数原型的错误。我的头文件:

#ifndef A3_H
#define A3_H

void list_init(record_list*);
void list_destroy(record_list*);
int  list_insert(record_list*, const record*);
int input_record(record*);

#endif

我收到的错误是:

$ gcc -ansi -W -Wall -pedantic -c a3.c
In file included from a3.c:4:0:
a3.h:4:27: error: expected ‘)’ before ‘*’ token
a3.h:5:30: error: expected ‘)’ before ‘*’ token
a3.h:6:29: error: expected ‘)’ before ‘*’ token
a3.h:7:24: error: expected ‘)’ before ‘*’ token

我不能在头文件的函数原型中包含指针吗?

4

1 回答 1

5

是的,你可以在头文件中有指针,但看起来你还没有定义recordrecord_list任何地方。

于 2012-11-25T22:23:15.957 回答