#!/bin/sh # # formt-code - script for beautify code by clang-format. # # Alexander Popov files=( "listen.c" ) for file in "${files[@]}" do clang-format -i --style=LLVM --sort-includes=false $file done