clang-format-all.ps1 306 B

123456789
  1. Get-ChildItem -Path "totp" -Directory -Recurse | ForEach-Object {
  2. if ((Test-Path "$($_.FullName)/*.c") -or (Test-Path "$($_.FullName)/*.h")) {
  3. Push-Location $_.FullName
  4. Write-Host "Processing $($_.FullName)"
  5. &clang-format -i -style=file *.c *.h
  6. Pop-Location
  7. }
  8. }