1# Copyright: 2017 Masatake YAMATO 2# License: GPL-2 3 4CTAGS=$1 5 6. ../utils.sh 7 8O=/tmp/ctags-tmain-$$.json 9 10is_feature_available "${CTAGS}" json 11 12$CTAGS --quiet --options=NONE --extras=-p --output-format=json -f ${O} input.c > /dev/null && cat ${O} 13s=$? 14 15rm -f ${O} 16 17exit $s 18