mergerfs/tools/cppfind
2014-11-04 13:52:04 -05:00

8 lines
143 B
Bash
Executable File

#!/bin/bash
FUSE_CFLAGS=$(pkg-config --cflags fuse)
echo "#include <fuse.h>" | cpp ${FUSE_CFLAGS} | grep -q "${1}"
[ "$?" != "0" ]; echo $?