1 /* 2 * $Id$ 3 * 4 * Copyright (c) 2015, vim-jp 5 * 6 * This source code is released for free distribution under the terms of the 7 * GNU General Public License version 2 or (at your option) any later version. 8 * 9 * This module contains functions for checking multibyte character set. 10 */ 11 #ifndef CTAGS_MAIN_MBCS_H 12 #define CTAGS_MAIN_MBCS_H 13 14 /* 15 * INCLUDE FILES 16 */ 17 #include "general.h" /* must always come first */ 18 19 #ifdef HAVE_ICONV 20 21 /* 22 * FUNCTION PROTOTYPES 23 */ 24 extern bool isConverting (void); 25 26 #endif /* HAVE_ICONV */ 27 28 #endif /* CTAGS_MAIN_MBCS_H */ 29