We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14379bd commit eeaa933Copy full SHA for eeaa933
.clang-format
@@ -0,0 +1,5 @@
1
+BasedOnStyle: LLVM
2
+IndentWidth: 4
3
+BinPackArguments: false
4
+BinPackParameters: false
5
+IndentCaseLabels: true
.uncrustify.cfg
dev-bin/clang-format-all.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+format="clang-format -i -style=file"
+for dir in extension; do
6
+ c_files=`find $dir -maxdepth 1 -name '*.c'`
7
+ if [ "$c_files" != "" ]; then
8
+ $format $dir/*.c;
9
+ fi
10
11
+ h_files=`find $dir -maxdepth 1 -name '*.h'`
12
+ if [ "$h_files" != "" ]; then
13
+ $format $dir/*.h;
14
15
+done
0 commit comments