###わからないこと
次のようにfopen.h, fopen.cの中にFileOpen関数を定義し,jisaku.cのmain関数でFileOpen関数を使おうとしています.
gcc jisaku.c
とコンパイルすると次のようなエラーが出ます.
Undefined symbols for architecture x86_64:
"_FileOpen", referenced from:
_main in jisaku-bf06e8.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
エラー内容的に変数や関数の宣言の仕方が悪いと思うのですが,どこを直していいかわからないので質問しました.
C
1//fopen.h 2 3#ifndef fopen_h 4#define fopen_h 5 6#include <stdio.h> 7 8int fcount; 9FILE *FileOpen(FILE **fp, const char *filename, const char *mode); 10 11#endif /* fopen_h */
C
1//fopen.c 2 3#include "fopen.h" 4#include <stdlib.h> 5 6FILE *FileOpen(FILE **fp, const char *filename, const char *mode) { 7 if ((*fp = fopen(filename, mode)) == NULL) { 8 fprintf(stderr, "Fileopen error %d\n", fcount); 9 exit(1); 10 } 11 return *fp; 12}
C
1//jisaku.h 2 3#ifndef jisaku_h 4#define jisaku_h 5 6#include <stdio.h> 7#include "fopen.h" 8void test(void); 9 10#endif /* jisaku_h */ 11
C
1//jisaku.c 2 3#include "jisaku.h" 4#include "fopen.h" 5int fcount = 0 6 7void test(void) { 8 puts("World"); 9} 10 11int main(void) { 12 FILE *fp; 13 puts("Hello"); 14 test(); 15 FileOpen(&fp, "test.txt", "w"); 16 17 fclose(fp); 18}
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。