#ifndef CALLER_H_
#define CALLER_H_
#include "stdlib.h"
#include "cardCell.h"
#endif /* CALLER_H_ */
_______________________________________________________________
typedef struct
{
int row;
int col;
char letter;
char digit;
bool matched;
} cardCellContent;
尝试将此数据类型包含在另一个头文件中时出现冲突类型错误我不确定为什么。