forked from khoih-prog/AsyncHTTPRequest_Generic
### Releases v1.10.2 1. Default to reconnect to the same `host:port` after connected for new HTTP sites. Check [Host/Headers not always sent with 1.10.1 #44](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues44) 2. Update `Packages' Patches`
7 lines
199 B
Bash
7 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
|
|
|