Created
June 14, 2017 04:52
-
-
Save morris821028/32be9395e000cf6dcd20fece72ba14a9 to your computer and use it in GitHub Desktop.
Format Your C Code on Miwa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INPUT=main.c | |
# inplace format `-i` | |
clang-format-3.8 -i -style="{BasedOnStyle: llvm, IndentWidth: 4}" main.c | |
# output the result on the screen | |
clang-format-3.8 -style="{BasedOnStyle: llvm, IndentWidth: 4}" main.c | |
# more detail config | |
clang-format-3.8 -style="{BasedOnStyle: llvm, IndentWidth: 4}" -dump-config | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment