1#!/bin/sh 2 3# Copyright: 2015 Masatake YAMATO 4# License: GPL-2 5 6CTAGS=$1 7 8. ../utils.sh 9 10if ${CTAGS} --quiet --options=NONE --list-features | grep -q iconv; then 11 check_encoding euc-jp 12 ${CTAGS} --quiet --options=NONE --input-encoding-java=invalid --input-encoding-javascript=euc-jp -o - input.js input.java 13 exit $? 14else 15 skip "iconv feature is not available" 16fi 17