view ifndef_wrapper.sh @ 1824:1edf4f143e12

keep LANG env variable for child process (#111)
author fidomax <adobegitler@gmail.com>
date Thu, 19 Aug 2021 18:49:52 +0300
parents 0196f4f83fee
children
line wrap: on
line source

#!/bin/sh

# Wrap all "#define X Y" with a #ifndef X...#endif"

sed 's/^\( *#define \([^ ][^ ]*\) .*\)/#ifndef \2\
\1\
#endif/'