Annotation of embedaddon/php/ext/mbstring/libmbfl/filters/mbfilter_cp5022x.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * "streamable kanji code filter and converter"
                      3:  * Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
                      4:  *
                      5:  * LICENSE NOTICES
                      6:  *
                      7:  * This file is part of "streamable kanji code filter and converter",
                      8:  * which is distributed under the terms of GNU Lesser General Public 
                      9:  * License (version 2) as published by the Free Software Foundation.
                     10:  *
                     11:  * This software is distributed in the hope that it will be useful,
                     12:  * but WITHOUT ANY WARRANTY; without even the implied warranty of
                     13:  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     14:  * GNU Lesser General Public License for more details.
                     15:  *
                     16:  * You should have received a copy of the GNU Lesser General Public
                     17:  * License along with "streamable kanji code filter and converter";
                     18:  * if not, write to the Free Software Foundation, Inc., 59 Temple Place,
                     19:  * Suite 330, Boston, MA  02111-1307  USA
                     20:  *
                     21:  * The author of this file:
                     22:  *
                     23:  */
                     24: /*
                     25:  * The source code included in this files was separated from mbfilter_ja.c
                     26:  * by moriyoshi koizumi <moriyoshi@php.net> on 4 dec 2002.
                     27:  * 
                     28:  */
                     29: 
                     30: #ifndef MBFL_MBFILTER_CP50221_h
                     31: #define MBFL_MBFILTER_CP50221_h
                     32: 
                     33: #include "mbfilter.h"
                     34: 
                     35: extern const mbfl_encoding mbfl_encoding_jis_ms;
                     36: extern const mbfl_encoding mbfl_encoding_cp50220;
                     37: extern const mbfl_encoding mbfl_encoding_cp50220raw;
                     38: extern const mbfl_encoding mbfl_encoding_cp50221;
                     39: extern const mbfl_encoding mbfl_encoding_cp50222;
                     40: extern const struct mbfl_identify_vtbl vtbl_identify_jis_ms;
                     41: extern const struct mbfl_identify_vtbl vtbl_identify_cp50220;
                     42: extern const struct mbfl_identify_vtbl vtbl_identify_cp50220raw;
                     43: extern const struct mbfl_identify_vtbl vtbl_identify_cp50221;
                     44: extern const struct mbfl_identify_vtbl vtbl_identify_cp50222;
                     45: extern const struct mbfl_convert_vtbl vtbl_jis_ms_wchar;
                     46: extern const struct mbfl_convert_vtbl vtbl_wchar_jis_ms;
                     47: extern const struct mbfl_convert_vtbl vtbl_cp50220_wchar;
                     48: extern const struct mbfl_convert_vtbl vtbl_wchar_cp50220;
                     49: extern const struct mbfl_convert_vtbl vtbl_cp50220raw_wchar;
                     50: extern const struct mbfl_convert_vtbl vtbl_wchar_cp50220raw;
                     51: extern const struct mbfl_convert_vtbl vtbl_cp50221_wchar;
                     52: extern const struct mbfl_convert_vtbl vtbl_wchar_cp50221;
                     53: extern const struct mbfl_convert_vtbl vtbl_cp50222_wchar;
                     54: extern const struct mbfl_convert_vtbl vtbl_wchar_cp50222;
                     55:  
                     56: int mbfl_filt_conv_jis_ms_wchar(int c, mbfl_convert_filter *filter);
                     57: int mbfl_filt_conv_wchar_jis_ms(int c, mbfl_convert_filter *filter);
                     58: int mbfl_filt_conv_wchar_cp50220(int c, mbfl_convert_filter *filter);
                     59: int mbfl_filt_conv_wchar_cp50220raw(int c, mbfl_convert_filter *filter);
                     60: int mbfl_filt_conv_wchar_cp50221(int c, mbfl_convert_filter *filter);
                     61: int mbfl_filt_conv_wchar_cp50222(int c, mbfl_convert_filter *filter);
                     62: int mbfl_filt_conv_wchar_cp50222_flush(mbfl_convert_filter *filter);
                     63: 
                     64: #endif /* MBFL_MBFILTER_CP50221_h */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>