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.
これを使用しなければならなかったのは久しぶりです...fopen()現在のファイルポインタで開いているファイルを切り捨てるにはどうすればよいですか?
fopen()
普遍的な解決策がない場合、私は Windows を使用しています。
Windowsを使用しているので、これを使用します。
_chsize( fileno(f), size);
または64ビットバージョン:
_chsize_s(_fileno(f), size);