/
githubmirror
/
libcbor
Обзор
Документация
Войти
/
githubmirror
/
libcbor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
clang-format.sh
10 строк
253 B
Pavel Kalvoda
Remove clang-format-8 pinning (not needed since CircleCI migration)
26 дек 2022, 18:23
26 дек 2022, 18:23
fdc5e50
Код
Авторство
О чём код?
#!/usr/bin/env bash # Usage: ./clang-format.sh <extra arguments> DIRS="src test examples" SOURCES=$(find ${DIRS} -name "*.c") SOURCES+=" $(find ${DIRS} -name "*.h")" SOURCES+=" $(find ${DIRS} -name "*.cpp")" clang-format $@ -style=file -i ${SOURCES}