clang-format-all.ps1 354 B

1234567
  1. $clang_format = Join-Path -Path $PSScriptRoot -ChildPath "flipperzero-firmware_official_dev/toolchain/x86_64-windows/bin/clang-format.exe"
  2. Push-Location $PSScriptRoot
  3. Get-ChildItem -Path "totp" -File -Recurse -Include "*.c", "*.h" | ForEach-Object {
  4. Write-Host "Formatting $($_.FullName)"
  5. & $clang_format -i -style=file $_.FullName
  6. }
  7. Pop-Location