Initial import of binutils 2.22 on the new vendor branch
[dragonfly.git] / contrib / grep / src / mbsupport.h
1 /* mbsupport.h --- Localize determination of whether we have multibyte stuff.
2
3    Copyright (C) 2004-2005, 2007, 2009-2011 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
18    02110-1301, USA.  */
19
20
21 /* This file is needed so that we test for i18n support in just one place.
22    This gives us a consistent definition for all uses of MBS_SUPPORT. This
23    follows the ``Don't Repeat Yourself'' principle from "The Pragmatic
24    Programmer".
25
26    The tests should be *all* the ones that are needed for an individual
27    application.  */
28
29 #include <stdlib.h>
30
31 #if defined HAVE_WCSCOLL && defined HAVE_ISWCTYPE
32 # define MBS_SUPPORT 1
33 #else
34 # define MBS_SUPPORT 0
35 #endif