Skip to content

Instantly share code, notes, and snippets.

View kampersanda's full-sized avatar
🙋
I'm fine, thank you. And you?

Shunsuke Kanda kampersanda

🙋
I'm fine, thank you. And you?
View GitHub Profile
@kampersanda
kampersanda / clean_comments.py
Last active May 1, 2021 05:56 — forked from ChunMinChang/remove_c_style_comments.py
Python: Remove C/C++ style comments #parser
#!/usr/bin/env python3
import os
from argparse import ArgumentParser
from remove_c_style_comments import *
from glob import glob
def clean_comment(cpp_files, output_dir):
for cpp_file in cpp_files: