A tool to check certain features of the coding style in C files.
Warning
If you put a file which is not a .c or .h file, the project will ignore it.
Warning
Do not use regex and expandable syntax such as my_dir/* or *.c
Once you have cloned the repository, exec the following command
go get github.com/gookit/colorGo in the cloned directory and execute the following command
go run main.go [-v/--verbose] <directories/filenames>
# -v/--verbose print a detail report
# <directories/filenames> is a list of directories and/or filenames separed by one or more spaces
# Example:
go run main.go test.c
# or
go run main.go my_dirGo in the cloned directory and execute the following command
go build main.go./main.go [-v/--verbose] <directories/filenames>
# -v/--verbose print a detail report
# <directories/filenames> is a list of directories and/or filenames separed by one or more spaces
# Example:
./main.go test.c
# or
./main.go my_dir