Input handling

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-07-09 07:54:10 +03:00
parent 9fa2a1e8c7
commit dd6cadb50d
6 changed files with 1849 additions and 1529 deletions

8
tools/format.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(git rev-parse --show-toplevel)"
find "$ROOT/src" -type f -name '*.cppm' -print0 | while IFS= read -r -d '' f; do
clang-format -i --style=file "$f"
done