Skip to content

Instantly share code, notes, and snippets.

@morris821028
Created June 14, 2017 04:52
Show Gist options
  • Save morris821028/32be9395e000cf6dcd20fece72ba14a9 to your computer and use it in GitHub Desktop.
Save morris821028/32be9395e000cf6dcd20fece72ba14a9 to your computer and use it in GitHub Desktop.
Format Your C Code on Miwa
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