1 /*
2   LibRCC - module responsible for extracting locale information
3 
4   Copyright (C) 2005-2008 Suren A. Chilingaryan <csa@dside.dyndns.org>
5 
6   This library is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License version 2.1 or later
8   as published by the Free Software Foundation.
9 
10   This library is distributed in the hope that it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
13   for more details.
14 
15   You should have received a copy of the GNU Lesser General Public License
16   along with this program; if not, write to the Free Software Foundation, Inc.,
17   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 #ifndef _RCC_LOCALE_H
21 #define _RCC_LOCALE_H
22 
23 #define RCC_MAX_CHARSET_CHARS 16
24 #define RCC_MAX_LANGUAGE_CHARS 16
25 #define RCC_MAX_VARIABLE_CHARS 16
26 
27 #endif /* _RCC_LOCALE_H */
28