dmx-interface/lib/AsyncWebServer_ESP32_W5500/utils/restyle.sh
Patrick Schwarz c295017495 Other ETH lib
2024-11-09 21:59:25 +01:00

6 lines
199 B
Bash

#!/bin/bash
for dir in . ; do
find $dir -type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.ino" \) -exec astyle --suffix=none --options=./utils/astyle_library.conf \{\} \;
done