44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
me=$0
|
|
scriptversion="1.0.0"
|
|
|
|
version="$me $scriptversion
|
|
|
|
Copyright (C) 2025 GCK.
|
|
This is free software; you are free to change and redistribute it.
|
|
There is NO WARRANTY, to the extent permitted by law."
|
|
|
|
usage="\
|
|
Usage: $me [OPTION]...
|
|
Format C source code
|
|
|
|
Options:
|
|
-q, -quiet silence output
|
|
|
|
--help print this help and exit
|
|
--version output version information"
|
|
|
|
QUIET=
|
|
|
|
while test $# -gt 0; do
|
|
case $1 in
|
|
--help) echo "$usage"; exit 0;;
|
|
--version) echo "$version"; exit 0;;
|
|
--quiet|-q) QUIET=true;;
|
|
-*)
|
|
echo "$0: Unknown option '$1'." >&2
|
|
echo "$0: Try '--help' for more information.'$1'." >&2
|
|
exit 1;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
if [ -z "$QUIET" ]; then
|
|
find . -type f -name '*.c' ! -path './lib/*' ! -path './gcklib/*' -exec clang-format -i --verbose {} +
|
|
find . -type f -name '*.h' ! -path './lib/*' ! -path './gcklib/*' -exec clang-format -i --verbose {} +
|
|
else
|
|
find . -type f -name '*.c' ! -path './lib/*' ! -path './gcklib/*' -exec clang-format -i {} +
|
|
find . -type f -name '*.h' ! -path './lib/*' ! -path './gcklib/*' -exec clang-format -i {} +
|
|
fi
|