bsdiff-portable

A more portable version of Colin Percival's bsdiff
git clone git://git.sgregoratto.me/bsdiff-portable
Log | Files | Refs | README | LICENSE

.clang-format (1312B)


      1 AlignTrailingComments: true
      2 AlwaysBreakAfterReturnType: All
      3 AlignConsecutiveMacros: true
      4 #AlignConsecutiveLists: true
      5 #BitFieldDeclarationsOnePerLine: true
      6 BreakBeforeBraces: Mozilla
      7 ColumnLimit: 100
      8 ContinuationIndentWidth: 4
      9 Cpp11BracedListStyle: false
     10 FixNamespaceComments: true
     11 IndentCaseLabels: false
     12 IndentWidth: 8
     13 IncludeBlocks: Regroup
     14 IncludeCategories:
     15  - Regex: '"config\.h"'
     16    Priority: 1
     17    SortPriority: 0
     18  - Regex: '^<sys/param\.h>'
     19    Priority: 1
     20    SortPriority: 0
     21  - Regex: '^<sys/types\.h>'
     22    Priority: 1
     23    SortPriority: 1
     24  - Regex: '^<sys.*/'
     25    Priority: 1
     26    SortPriority: 2
     27  - Regex: '^<uvm/'
     28    Priority: 2
     29    SortPriority: 3
     30  - Regex: '^<machine/'
     31    Priority: 3
     32    SortPriority: 4
     33  - Regex: '^<dev/'
     34    Priority: 4
     35    SortPriority: 5
     36  - Regex: '^<net.*/'
     37    Priority: 5
     38    SortPriority: 6
     39  - Regex: '^<protocols/'
     40    Priority: 5
     41    SortPriority: 7
     42  - Regex: '^<(fs|miscfs|msdosfs|nfs|ufs)/'
     43    Priority: 6
     44    SortPriority: 8
     45  - Regex: '^<(x86|amd64|i386|xen)/'
     46    Priority: 7
     47    SortPriority: 8
     48  - Regex: '^<path'
     49    Priority: 9
     50    SortPriority: 11
     51  - Regex: '^<[^/].*\.h'
     52    Priority: 8
     53    SortPriority: 10
     54  - Regex: '^\".*\.h\"'
     55    Priority: 10
     56    SortPriority: 12   
     57 SortIncludes: true
     58 #SpacesBeforeCpp11BracedList: true
     59 SpacesBeforeTrailingComments: 4
     60 TabWidth: 8
     61 UseTab: Always