2024-10-07 15:06:10 +00:00
|
|
|
#!/bin/env sh
|
|
|
|
# single header api generator with clang
|
|
|
|
|
2025-01-03 08:55:39 +00:00
|
|
|
set +e
|
|
|
|
|
2024-10-08 07:40:32 +00:00
|
|
|
clang -I./ -P -E -nostdinc -nobuiltininc -DTWN_NOT_C $TWNROOT/include/twn_game_api.h 2> /dev/null | clang-format
|