Files
ZiCode0 6833f63b0f 🎉 begin project 🎉
2025-04-06 20:30:38 +12:00

8 lines
129 B
Bash
Executable File

#!/bin/sh
# Wrap all "#define X Y" with a #ifndef X...#endif"
sed 's/^\( *#define \([^ ][^ ]*\) .*\)/#ifndef \2\
\1\
#endif/'