独自のヘッダー ファイルを作成しようとしましたが、機能しませんvim
。
wget.h:2:2: error: invalid preprocessing directive #ifndef__WGET_H__
wget.h:3:2: error: invalid preprocessing directive #define__WGET_H__
wget.h:7:2: error: #endif without #if
私のコードはこれです:
//wget header file
#ifndef__WGET_H__
#define__WGET_H__
int my_wget (char web_address[]);
#endif /*__WGET_H__*/
それは私には問題ないように思えます (私が読んだ例は私のものとよく似ています) 何が問題なのかわかりません。何か案は?