我在program.h中声明了一个结构
typedef struct{
int size;
int colour;
int h;
int w;
}model;
我在program.c中使用它,但我也希望在函数的interface.c中使用它。
在interface.h中我有
#include "program.h"
void updateF(model* novomodelo);
在interface.c
中#include "interface.h"
void updateF(model* novomodelo){
....
}
但我正在
错误:预期')'之前' *'令牌
我做错了什么? 这样做的正确方法是什么? 感谢