blob: 2c73ddf5d702f21db28418cc81416f4a6d897a54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
rm -f ./themes
clang-format -i themes.c
# Linux
cc -std=c89 -DDEBUG -Wall -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined -o themes themes.c
# ./themes ../themes/apollo.svg
cat ../themes/apollo.svg | ./themes
|