2003-01-25 04:08:11 +01:00
|
|
|
/*
|
|
|
|
* PROGRAM: InterBase International support
|
2003-12-11 11:33:30 +01:00
|
|
|
* MODULE: lc_iso8859_2.cpp
|
2003-01-25 04:08:11 +01:00
|
|
|
* DESCRIPTION: Language Drivers in the iso8859_2 family.
|
|
|
|
* (full International collation)
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): Michal Bukovjan_________________.
|
|
|
|
*/
|
|
|
|
|
2003-02-17 11:37:42 +01:00
|
|
|
#include "firebird.h"
|
2003-01-25 04:08:11 +01:00
|
|
|
#include "../intl/ldcommon.h"
|
2003-02-20 16:47:23 +01:00
|
|
|
#include "lc_narrow.h"
|
|
|
|
#include "lc_dos.h"
|
2003-09-21 01:33:36 +02:00
|
|
|
#include "ld_proto.h"
|
2003-01-25 04:08:11 +01:00
|
|
|
|
2003-09-19 00:06:59 +02:00
|
|
|
|
2006-04-13 05:04:30 +02:00
|
|
|
TEXTTYPE_ENTRY(ISO88592_c1_init)
|
2003-01-25 04:08:11 +01:00
|
|
|
{
|
2006-04-13 05:04:30 +02:00
|
|
|
static const ASCII POSIX[] = "cs_CZ.ISO8859_2";
|
2003-01-25 04:08:11 +01:00
|
|
|
|
|
|
|
#include "../intl/collations/xx88592czech.h"
|
|
|
|
|
2007-05-04 16:48:59 +02:00
|
|
|
return LC_NARROW_family3(cache, cs, CC_CZECH, LDRV_TIEBREAK,
|
2006-04-13 05:04:30 +02:00
|
|
|
NoCaseOrderTbl, ToUpperConversionTbl, ToLowerConversionTbl,
|
|
|
|
CompressTbl, ExpansionTbl, POSIX, attributes, specific_attributes, specific_attributes_length);
|
2003-09-26 17:26:35 +02:00
|
|
|
}
|
|
|
|
|
2006-04-13 05:04:30 +02:00
|
|
|
TEXTTYPE_ENTRY(ISO88592_c2_init)
|
2003-09-26 17:26:35 +02:00
|
|
|
{
|
2006-04-13 05:04:30 +02:00
|
|
|
static const ASCII POSIX[] = "ISO_HUN.ISO8859_2";
|
2003-09-26 17:26:35 +02:00
|
|
|
|
|
|
|
#include "../intl/collations/xx88592hun.h"
|
|
|
|
|
2007-05-04 16:48:59 +02:00
|
|
|
return LC_NARROW_family3(cache, cs, CC_HUNGARY, LDRV_TIEBREAK,
|
2006-04-13 05:04:30 +02:00
|
|
|
NoCaseOrderTbl, ToUpperConversionTbl, ToLowerConversionTbl,
|
|
|
|
CompressTbl, ExpansionTbl, POSIX, attributes, specific_attributes, specific_attributes_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEXTTYPE_ENTRY(ISO88592_c3_init)
|
|
|
|
{
|
|
|
|
static const ASCII POSIX[] = "ISO_PLK.ISO8859_2";
|
|
|
|
|
|
|
|
#include "../intl/collations/xx88592plk.h"
|
|
|
|
|
2007-05-04 16:48:59 +02:00
|
|
|
return LC_NARROW_family3(cache, cs, CC_POLAND, LDRV_TIEBREAK,
|
2006-04-13 05:04:30 +02:00
|
|
|
NoCaseOrderTbl, ToUpperConversionTbl, ToLowerConversionTbl,
|
|
|
|
CompressTbl, ExpansionTbl, POSIX, attributes, specific_attributes, specific_attributes_length);
|
2003-01-25 04:08:11 +01:00
|
|
|
}
|