私は周りを見回していくつかのことを試しましたが、現時点では何も機能していません。
main.c:13: error: two or more data types in declaration specifiers
make[1]: *** [main.o] Error 1
make: *** [build] Error 2
私のコードはほとんどこれです(私はすべてをコメントアウトしたので、それは他のものではありません+これ以外に他のファイルはありません);
main.h
struct savetype{
bool file_exists;
}
main.c
#include "main.h"
extern struct savetype save;
int main (void){
return 0;
}
stuff.c
#include "main.h"
struct savetype save;
save.file_exists=true;