Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
filenoFILE* のファイル記述子を取得する必要があります。
fileno
から返されるなど、ファイル記述子番号を指定して FILE* のアドレスを取得するにはどうすればよいですpipeか?
pipe
ファイルの パイプ
関数を使用したいfdopen():
fdopen()
FILE * file = fdopen(fd, "r");
次のように組み合わせて使用できますpipe。
FILE * file = fdopen(pipe(..,..), "r");