1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

C言語のコードからコメントをまるっと削除する

Last updated at Posted at 2022-05-24

はじめに

C言語のコードからコメントをまるっと削除したいときありませんか?

結論

GCCが利用できる環境であれば、次のオプションを利用することでコメントを削除することができるそうです。

gcc -fpreprocessed -dD -E test.c

gccのオプションを利用すれば、コメントをまるっと削除できます。
シェルスクリプトのパイプライン中で利用したいときは - を使えばよい。

cat test.c \
 | gcc -fpreprocessed -dD -E - \
 | wc -l

この記事は以上です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?