mirror of
https://github.com/CIS-osdev/kernel
synced 2025-05-10 21:28:02 +03:00
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pwd=$(pwd)
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
cd $SCRIPT_DIR/..
|
|
|
|
clang-format --style=file --dump-config
|
|
find ./ -iname '*.h' -o -iname '*.c' | xargs clang-format -i --style=file --verbose
|
|
|
|
cd $pwd
|