A C program to strip comments from a c
file and output the result to a new file.
- Fast and Without any third-party library
- Without using Regex
- Remove inline C-style comments
- Remove multiline C-style comments
- Trim whitespaces
- Remove two or more empty lines
gcc StripComments.c -o strip_comments
If you are going to strip comments and get the results in stdout:
./strip_comments StripComments.c
And maybe sometime you need to write the result in another or same file:
./strip_comments StripComments.c StripComments.nocomments.c
- Add Makefile or CMake (to set
strip_comments
in /user/bin/)
Anyone welcome to do contribute or extend the program to support Python comments too. (With a flag)
© Copyright Max Base, 2022