comparison ifndef_wrapper.sh @ 1355:3fdd8c5a0195 fuzz

merge main to fuzz
author Matt Johnston <matt@ucc.asn.au>
date Thu, 18 May 2017 23:45:10 +0800
parents 750ec4ec4cbe
children 198e2ee0f4b1
comparison
equal deleted inserted replaced
1354:7618759e9327 1355:3fdd8c5a0195
1 #!/bin/sh
2
3 # Wrap all "#define X Y" with a #ifndef X...#endif"
4
5 sed -E 's/^(#define ([^ ]+) .*)/#ifndef \2\
6 \1\
7 #endif/'