mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-31 11:23:02 +01:00
3000b243a8
The kanji* files are no longer used, except for some macros in one of the headers. Now that we have the intl directory they don't belong in jrd. Moved them into intl.
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/*
|
|
* PROGRAM: JRD Access Method
|
|
* MODULE: kanji_proto.h
|
|
* DESCRIPTION: Prototype header file for kanji.c
|
|
*
|
|
* 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.
|
|
*
|
|
* The Original Code was created by Inprise Corporation
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
* Copyright (C) Inprise Corporation.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
*/
|
|
|
|
#ifndef _JRD_KANJI_PROTO_H_
|
|
#define _JRD_KANJI_PROTO_H_
|
|
|
|
extern USHORT KANJI_check_euc(UCHAR *, USHORT);
|
|
extern USHORT KANJI_check_sjis(UCHAR *, USHORT);
|
|
extern USHORT KANJI_euc2sjis(UCHAR *, USHORT, UCHAR *, USHORT, USHORT *);
|
|
extern USHORT KANJI_euc_byte2short(UCHAR *, USHORT *, USHORT);
|
|
extern USHORT KANJI_euc_len(UCHAR *, USHORT, USHORT *);
|
|
extern USHORT KANJI_sjis2euc(UCHAR *, USHORT, UCHAR *, USHORT, USHORT *);
|
|
extern USHORT KANJI_sjis_byte2short(UCHAR *, USHORT *, USHORT);
|
|
extern USHORT KANJI_sjis2euc5(UCHAR *, USHORT, UCHAR *, USHORT, USHORT *,
|
|
USHORT *, USHORT *);
|
|
extern USHORT KANJI_sjis_len(UCHAR *, USHORT, USHORT *);
|
|
|
|
#endif /* _JRD_KANJI_PROTO_H_ */
|