加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ClangFormat 866 Bytes
一键复制 编辑 原始数据 按行查看 历史
GeekNeo 提交于 2021-04-15 21:27 . init a64dbg opensource code.
#! /usr/bin/python
import os
import subprocess
clang_format = os.getenv('CLANG_FORMAT')
if not clang_format:
print('Please set CLANG_FORMAT enviroment to the clang-format full path.')
sys.exit(-1)
def paths(path):
path_collection = []
for dirpath, dirnames, filenames in os.walk(path):
for file in filenames:
fullpath = os.path.join(dirpath, file)
path_collection.append(fullpath)
return path_collection
for p in paths('./'):
if p.find('signdb') > 0:
continue
if p.endswith('.c') or \
p.endswith('cpp') or \
p.endswith('.cc') or \
p.endswith('.h') or \
p.endswith('.hpp') or \
p.endswith('.m') or \
p.endswith('.mm'):
print('Formating "%s" ...' % (p))
subprocess.Popen([clang_format, '-i', '-style=Google', p]).wait()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化