view ifndef_wrapper.sh @ 1709:04155ce30759

Sync curve25519 license
author Vladislav Grishenko <themiron@mail.ru>
date Sun, 31 May 2020 21:10:43 +0500
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/'