Home | History | Annotate | Line # | Download | only in modules
citrus_big5.c revision 1.8
      1  1.8       agc /*	$NetBSD: citrus_big5.c,v 1.8 2003/08/07 16:42:38 agc Exp $	*/
      2  1.1  tshiozak 
      3  1.1  tshiozak /*-
      4  1.1  tshiozak  * Copyright (c)2002 Citrus Project,
      5  1.1  tshiozak  * All rights reserved.
      6  1.1  tshiozak  *
      7  1.1  tshiozak  * Redistribution and use in source and binary forms, with or without
      8  1.1  tshiozak  * modification, are permitted provided that the following conditions
      9  1.1  tshiozak  * are met:
     10  1.1  tshiozak  * 1. Redistributions of source code must retain the above copyright
     11  1.1  tshiozak  *    notice, this list of conditions and the following disclaimer.
     12  1.1  tshiozak  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  tshiozak  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  tshiozak  *    documentation and/or other materials provided with the distribution.
     15  1.1  tshiozak  *
     16  1.1  tshiozak  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.1  tshiozak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.1  tshiozak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.1  tshiozak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.1  tshiozak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.1  tshiozak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.1  tshiozak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.1  tshiozak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.1  tshiozak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1  tshiozak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1  tshiozak  * SUCH DAMAGE.
     27  1.1  tshiozak  */
     28  1.1  tshiozak 
     29  1.1  tshiozak /*-
     30  1.1  tshiozak  * Copyright (c) 1993
     31  1.1  tshiozak  *	The Regents of the University of California.  All rights reserved.
     32  1.1  tshiozak  *
     33  1.1  tshiozak  * This code is derived from software contributed to Berkeley by
     34  1.1  tshiozak  * Paul Borman at Krystal Technologies.
     35  1.1  tshiozak  *
     36  1.1  tshiozak  * Redistribution and use in source and binary forms, with or without
     37  1.1  tshiozak  * modification, are permitted provided that the following conditions
     38  1.1  tshiozak  * are met:
     39  1.1  tshiozak  * 1. Redistributions of source code must retain the above copyright
     40  1.1  tshiozak  *    notice, this list of conditions and the following disclaimer.
     41  1.1  tshiozak  * 2. Redistributions in binary form must reproduce the above copyright
     42  1.1  tshiozak  *    notice, this list of conditions and the following disclaimer in the
     43  1.1  tshiozak  *    documentation and/or other materials provided with the distribution.
     44  1.8       agc  * 3. Neither the name of the University nor the names of its contributors
     45  1.1  tshiozak  *    may be used to endorse or promote products derived from this software
     46  1.1  tshiozak  *    without specific prior written permission.
     47  1.1  tshiozak  *
     48  1.1  tshiozak  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49  1.1  tshiozak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50  1.1  tshiozak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51  1.1  tshiozak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52  1.1  tshiozak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53  1.1  tshiozak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54  1.1  tshiozak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55  1.1  tshiozak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56  1.1  tshiozak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57  1.1  tshiozak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58  1.1  tshiozak  * SUCH DAMAGE.
     59  1.1  tshiozak  */
     60  1.1  tshiozak 
     61  1.1  tshiozak #include <sys/cdefs.h>
     62  1.1  tshiozak #if defined(LIBC_SCCS) && !defined(lint)
     63  1.8       agc __RCSID("$NetBSD: citrus_big5.c,v 1.8 2003/08/07 16:42:38 agc Exp $");
     64  1.1  tshiozak #endif /* LIBC_SCCS and not lint */
     65  1.1  tshiozak 
     66  1.1  tshiozak #include <assert.h>
     67  1.1  tshiozak #include <errno.h>
     68  1.1  tshiozak #include <string.h>
     69  1.1  tshiozak #include <stdio.h>
     70  1.1  tshiozak #include <stdlib.h>
     71  1.1  tshiozak #include <stddef.h>
     72  1.1  tshiozak #include <locale.h>
     73  1.1  tshiozak #include <wchar.h>
     74  1.1  tshiozak #include <sys/types.h>
     75  1.1  tshiozak #include <limits.h>
     76  1.6  tshiozak 
     77  1.6  tshiozak #include "citrus_namespace.h"
     78  1.6  tshiozak #include "citrus_types.h"
     79  1.1  tshiozak #include "citrus_module.h"
     80  1.1  tshiozak #include "citrus_ctype.h"
     81  1.6  tshiozak #include "citrus_stdenc.h"
     82  1.1  tshiozak #include "citrus_big5.h"
     83  1.1  tshiozak 
     84  1.1  tshiozak /* ----------------------------------------------------------------------
     85  1.1  tshiozak  * private stuffs used by templates
     86  1.1  tshiozak  */
     87  1.1  tshiozak 
     88  1.1  tshiozak typedef struct {
     89  1.1  tshiozak 	char ch[2];
     90  1.1  tshiozak 	int chlen;
     91  1.1  tshiozak } _BIG5State;
     92  1.1  tshiozak 
     93  1.1  tshiozak typedef struct {
     94  1.1  tshiozak 	int dummy;
     95  1.1  tshiozak } _BIG5EncodingInfo;
     96  1.1  tshiozak 
     97  1.1  tshiozak typedef struct {
     98  1.1  tshiozak 	_BIG5EncodingInfo	ei;
     99  1.1  tshiozak 	struct {
    100  1.1  tshiozak 		/* for future multi-locale facility */
    101  1.1  tshiozak 		_BIG5State	s_mblen;
    102  1.1  tshiozak 		_BIG5State	s_mbrlen;
    103  1.1  tshiozak 		_BIG5State	s_mbrtowc;
    104  1.1  tshiozak 		_BIG5State	s_mbtowc;
    105  1.1  tshiozak 		_BIG5State	s_mbsrtowcs;
    106  1.1  tshiozak 		_BIG5State	s_wcrtomb;
    107  1.1  tshiozak 		_BIG5State	s_wcsrtombs;
    108  1.1  tshiozak 		_BIG5State	s_wctomb;
    109  1.1  tshiozak 	} states;
    110  1.1  tshiozak } _BIG5CTypeInfo;
    111  1.1  tshiozak 
    112  1.1  tshiozak #define _CEI_TO_EI(_cei_)		(&(_cei_)->ei)
    113  1.1  tshiozak #define _CEI_TO_STATE(_cei_, _func_)	(_cei_)->states.s_##_func_
    114  1.1  tshiozak 
    115  1.1  tshiozak #define _FUNCNAME(m)			_citrus_BIG5_##m
    116  1.1  tshiozak #define _ENCODING_INFO			_BIG5EncodingInfo
    117  1.1  tshiozak #define _CTYPE_INFO			_BIG5CTypeInfo
    118  1.1  tshiozak #define _ENCODING_STATE			_BIG5State
    119  1.2      yamt #define _ENCODING_MB_CUR_MAX(_ei_)	2
    120  1.1  tshiozak #define _ENCODING_IS_STATE_DEPENDENT	0
    121  1.4      yamt #define _STATE_NEEDS_EXPLICIT_INIT(_ps_)	0
    122  1.1  tshiozak 
    123  1.1  tshiozak 
    124  1.1  tshiozak static __inline void
    125  1.1  tshiozak /*ARGSUSED*/
    126  1.1  tshiozak _citrus_BIG5_init_state(_BIG5EncodingInfo * __restrict ei,
    127  1.1  tshiozak 			_BIG5State * __restrict s)
    128  1.1  tshiozak {
    129  1.1  tshiozak 	memset(s, 0, sizeof(*s));
    130  1.1  tshiozak }
    131  1.1  tshiozak 
    132  1.1  tshiozak static __inline void
    133  1.1  tshiozak /*ARGSUSED*/
    134  1.1  tshiozak _citrus_BIG5_pack_state(_BIG5EncodingInfo * __restrict ei,
    135  1.1  tshiozak 			void * __restrict pspriv,
    136  1.1  tshiozak 			const _BIG5State * __restrict s)
    137  1.1  tshiozak {
    138  1.1  tshiozak 	memcpy(pspriv, (const void *)s, sizeof(*s));
    139  1.1  tshiozak }
    140  1.1  tshiozak 
    141  1.1  tshiozak static __inline void
    142  1.1  tshiozak /*ARGSUSED*/
    143  1.1  tshiozak _citrus_BIG5_unpack_state(_BIG5EncodingInfo * __restrict ei,
    144  1.1  tshiozak 			  _BIG5State * __restrict s,
    145  1.1  tshiozak 			  const void * __restrict pspriv)
    146  1.1  tshiozak {
    147  1.1  tshiozak 	memcpy((void *)s, pspriv, sizeof(*s));
    148  1.1  tshiozak }
    149  1.1  tshiozak 
    150  1.1  tshiozak static __inline int
    151  1.1  tshiozak _citrus_BIG5_check(u_int c)
    152  1.1  tshiozak {
    153  1.1  tshiozak 	c &= 0xff;
    154  1.1  tshiozak 	return ((c >= 0xa1 && c <= 0xfe) ? 2 : 1);
    155  1.1  tshiozak }
    156  1.1  tshiozak 
    157  1.1  tshiozak static __inline int
    158  1.1  tshiozak _citrus_BIG5_check2(u_int c)
    159  1.1  tshiozak {
    160  1.1  tshiozak 	c &= 0xff;
    161  1.1  tshiozak 	if ((c >= 0x40 && c <= 0x7f) || (c >= 0xa1 && c <= 0xfe))
    162  1.1  tshiozak 		return 1;
    163  1.1  tshiozak 	else
    164  1.1  tshiozak 		return 0;
    165  1.1  tshiozak }
    166  1.1  tshiozak 
    167  1.1  tshiozak static int
    168  1.1  tshiozak /*ARGSUSED*/
    169  1.6  tshiozak _citrus_BIG5_encoding_module_init(_BIG5EncodingInfo * __restrict ei,
    170  1.6  tshiozak 				  const void * __restrict var, size_t lenvar)
    171  1.1  tshiozak {
    172  1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    173  1.1  tshiozak 
    174  1.1  tshiozak 	memset((void *)ei, 0, sizeof(*ei));
    175  1.1  tshiozak 
    176  1.1  tshiozak 	return (0);
    177  1.1  tshiozak }
    178  1.1  tshiozak 
    179  1.1  tshiozak static void
    180  1.1  tshiozak /*ARGSUSED*/
    181  1.6  tshiozak _citrus_BIG5_encoding_module_uninit(_BIG5EncodingInfo *ei)
    182  1.1  tshiozak {
    183  1.1  tshiozak }
    184  1.1  tshiozak 
    185  1.1  tshiozak static int
    186  1.1  tshiozak /*ARGSUSED*/
    187  1.1  tshiozak _citrus_BIG5_mbrtowc_priv(_BIG5EncodingInfo * __restrict ei,
    188  1.1  tshiozak 			  wchar_t * __restrict pwc,
    189  1.1  tshiozak 			  const char ** __restrict s, size_t n,
    190  1.1  tshiozak 			  _BIG5State * __restrict psenc,
    191  1.1  tshiozak 			  size_t * __restrict nresult)
    192  1.1  tshiozak {
    193  1.1  tshiozak 	wchar_t wchar;
    194  1.1  tshiozak 	int c;
    195  1.1  tshiozak 	int chlenbak;
    196  1.1  tshiozak 	const char *s0;
    197  1.1  tshiozak 
    198  1.1  tshiozak 	_DIAGASSERT(nresult != 0);
    199  1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    200  1.1  tshiozak 	_DIAGASSERT(psenc != NULL);
    201  1.1  tshiozak 	_DIAGASSERT(s != NULL && *s != NULL);
    202  1.1  tshiozak 
    203  1.1  tshiozak 	s0 = *s;
    204  1.1  tshiozak 
    205  1.1  tshiozak 	if (s0 == NULL) {
    206  1.1  tshiozak 		_citrus_BIG5_init_state(ei, psenc);
    207  1.1  tshiozak 		*nresult = 0;
    208  1.1  tshiozak 		return (0);
    209  1.1  tshiozak 	}
    210  1.1  tshiozak 
    211  1.1  tshiozak 	chlenbak = psenc->chlen;
    212  1.1  tshiozak 
    213  1.1  tshiozak 	/* make sure we have the first byte in the buffer */
    214  1.1  tshiozak 	switch (psenc->chlen) {
    215  1.1  tshiozak 	case 0:
    216  1.1  tshiozak 		if (n < 1)
    217  1.1  tshiozak 			goto restart;
    218  1.1  tshiozak 		psenc->ch[0] = *s0++;
    219  1.1  tshiozak 		psenc->chlen = 1;
    220  1.1  tshiozak 		n--;
    221  1.1  tshiozak 		break;
    222  1.1  tshiozak 	case 1:
    223  1.1  tshiozak 		break;
    224  1.1  tshiozak 	default:
    225  1.1  tshiozak 		/* illegal state */
    226  1.1  tshiozak 		goto ilseq;
    227  1.1  tshiozak 	}
    228  1.1  tshiozak 
    229  1.1  tshiozak 	c = _citrus_BIG5_check(psenc->ch[0] & 0xff);
    230  1.1  tshiozak 	if (c == 0)
    231  1.1  tshiozak 		goto ilseq;
    232  1.1  tshiozak 	while (psenc->chlen < c) {
    233  1.1  tshiozak 		if (n < 1) {
    234  1.1  tshiozak 			goto restart;
    235  1.1  tshiozak 		}
    236  1.1  tshiozak 		psenc->ch[psenc->chlen] = *s0++;
    237  1.1  tshiozak 		psenc->chlen++;
    238  1.1  tshiozak 		n--;
    239  1.1  tshiozak 	}
    240  1.1  tshiozak 
    241  1.1  tshiozak 	switch (c) {
    242  1.1  tshiozak 	case 1:
    243  1.1  tshiozak 		wchar = psenc->ch[0] & 0xff;
    244  1.1  tshiozak 		break;
    245  1.1  tshiozak 	case 2:
    246  1.1  tshiozak 		if (!_citrus_BIG5_check2(psenc->ch[1] & 0xff))
    247  1.1  tshiozak 			goto ilseq;
    248  1.1  tshiozak 		wchar = ((psenc->ch[0] & 0xff) << 8) | (psenc->ch[1] & 0xff);
    249  1.1  tshiozak 		break;
    250  1.1  tshiozak 	default:
    251  1.1  tshiozak 		/* illegal state */
    252  1.1  tshiozak 		goto ilseq;
    253  1.1  tshiozak 	}
    254  1.1  tshiozak 
    255  1.1  tshiozak 	*s = s0;
    256  1.1  tshiozak 	psenc->chlen = 0;
    257  1.1  tshiozak 	if (pwc)
    258  1.1  tshiozak 		*pwc = wchar;
    259  1.1  tshiozak 	if (!wchar)
    260  1.1  tshiozak 		*nresult = 0;
    261  1.1  tshiozak 	else
    262  1.1  tshiozak 		*nresult = c - chlenbak;
    263  1.1  tshiozak 
    264  1.1  tshiozak 	return (0);
    265  1.1  tshiozak 
    266  1.1  tshiozak ilseq:
    267  1.1  tshiozak 	psenc->chlen = 0;
    268  1.1  tshiozak 	*nresult = (size_t)-1;
    269  1.1  tshiozak 	return (EILSEQ);
    270  1.1  tshiozak 
    271  1.1  tshiozak restart:
    272  1.1  tshiozak 	*s = s0;
    273  1.1  tshiozak 	*nresult = (size_t)-2;
    274  1.1  tshiozak 	return (0);
    275  1.1  tshiozak }
    276  1.1  tshiozak 
    277  1.1  tshiozak static int
    278  1.1  tshiozak /*ARGSUSED*/
    279  1.1  tshiozak _citrus_BIG5_wcrtomb_priv(_BIG5EncodingInfo * __restrict ei,
    280  1.1  tshiozak 			  char * __restrict s,
    281  1.1  tshiozak 			  size_t n, wchar_t wc, _BIG5State * __restrict psenc,
    282  1.1  tshiozak 			  size_t * __restrict nresult)
    283  1.1  tshiozak {
    284  1.6  tshiozak 	int l, ret;
    285  1.1  tshiozak 
    286  1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    287  1.1  tshiozak 	_DIAGASSERT(nresult != 0);
    288  1.1  tshiozak 	_DIAGASSERT(s != NULL);
    289  1.6  tshiozak 
    290  1.1  tshiozak 	/* check invalid sequence */
    291  1.6  tshiozak 	if (wc & ~0xffff) {
    292  1.6  tshiozak 		ret = EILSEQ;
    293  1.6  tshiozak 		goto err;
    294  1.6  tshiozak 	}
    295  1.1  tshiozak 
    296  1.1  tshiozak 	if (wc & 0x8000) {
    297  1.1  tshiozak 		if (_citrus_BIG5_check((wc >> 8) & 0xff) != 2 ||
    298  1.6  tshiozak 		    !_citrus_BIG5_check2(wc & 0xff)) {
    299  1.6  tshiozak 			ret = EILSEQ;
    300  1.6  tshiozak 			goto err;
    301  1.6  tshiozak 		}
    302  1.1  tshiozak 		l = 2;
    303  1.1  tshiozak 	} else {
    304  1.6  tshiozak 		if (wc & ~0xff || !_citrus_BIG5_check(wc & 0xff)) {
    305  1.6  tshiozak 			ret = EILSEQ;
    306  1.6  tshiozak 			goto err;
    307  1.6  tshiozak 		}
    308  1.1  tshiozak 		l = 1;
    309  1.1  tshiozak 	}
    310  1.1  tshiozak 
    311  1.1  tshiozak 	if (n < l) {
    312  1.1  tshiozak 		/* bound check failure */
    313  1.6  tshiozak 		ret = E2BIG;
    314  1.6  tshiozak 		goto err;
    315  1.1  tshiozak 	}
    316  1.1  tshiozak 
    317  1.1  tshiozak 	if (l == 2) {
    318  1.1  tshiozak 		s[0] = (wc >> 8) & 0xff;
    319  1.1  tshiozak 		s[1] = wc & 0xff;
    320  1.1  tshiozak 	} else
    321  1.1  tshiozak 		s[0] = wc & 0xff;
    322  1.1  tshiozak 
    323  1.1  tshiozak 	*nresult = l;
    324  1.1  tshiozak 
    325  1.6  tshiozak 	return 0;
    326  1.1  tshiozak 
    327  1.6  tshiozak err:
    328  1.1  tshiozak 	*nresult = (size_t)-1;
    329  1.6  tshiozak 	return ret;
    330  1.6  tshiozak }
    331  1.6  tshiozak 
    332  1.6  tshiozak static __inline int
    333  1.6  tshiozak /*ARGSUSED*/
    334  1.6  tshiozak _citrus_BIG5_stdenc_wctocs(_BIG5EncodingInfo * __restrict ei,
    335  1.6  tshiozak 			   _csid_t * __restrict csid,
    336  1.6  tshiozak 			   _index_t * __restrict idx, wchar_t wc)
    337  1.6  tshiozak {
    338  1.6  tshiozak 
    339  1.6  tshiozak 	_DIAGASSERT(csid != NULL && idx != NULL);
    340  1.6  tshiozak 
    341  1.6  tshiozak 	if (wc<0x100)
    342  1.6  tshiozak 		*csid = 0;
    343  1.6  tshiozak 	else
    344  1.6  tshiozak 		*csid = 1;
    345  1.6  tshiozak 	*idx = (_index_t)wc;
    346  1.6  tshiozak 
    347  1.6  tshiozak 	return 0;
    348  1.1  tshiozak }
    349  1.1  tshiozak 
    350  1.6  tshiozak static __inline int
    351  1.6  tshiozak /*ARGSUSED*/
    352  1.6  tshiozak _citrus_BIG5_stdenc_cstowc(_BIG5EncodingInfo * __restrict ei,
    353  1.6  tshiozak 			   wchar_t * __restrict wc,
    354  1.6  tshiozak 			   _csid_t csid, _index_t idx)
    355  1.6  tshiozak {
    356  1.6  tshiozak 	u_int8_t h, l;
    357  1.6  tshiozak 
    358  1.6  tshiozak 	_DIAGASSERT(wc != NULL);
    359  1.6  tshiozak 
    360  1.6  tshiozak 	switch (csid) {
    361  1.6  tshiozak 	case 0:
    362  1.6  tshiozak 		if (idx>=0x80U)
    363  1.6  tshiozak 			return EILSEQ;
    364  1.6  tshiozak 		*wc = (wchar_t)idx;
    365  1.6  tshiozak 		break;
    366  1.6  tshiozak 	case 1:
    367  1.6  tshiozak 		if (idx>=0x10000U)
    368  1.6  tshiozak 			return EILSEQ;
    369  1.6  tshiozak 		h = idx >> 8;
    370  1.6  tshiozak 		l = idx;
    371  1.6  tshiozak 		if (h<0xA1 || h>0xF9 || l<0x40 || l>0xFE)
    372  1.6  tshiozak 			return EILSEQ;
    373  1.6  tshiozak 		*wc = (wchar_t)idx;
    374  1.6  tshiozak 		break;
    375  1.6  tshiozak 	default:
    376  1.6  tshiozak 		return EILSEQ;
    377  1.6  tshiozak 	}
    378  1.6  tshiozak 
    379  1.6  tshiozak 	return 0;
    380  1.6  tshiozak }
    381  1.1  tshiozak 
    382  1.1  tshiozak /* ----------------------------------------------------------------------
    383  1.1  tshiozak  * public interface for ctype
    384  1.1  tshiozak  */
    385  1.1  tshiozak 
    386  1.1  tshiozak _CITRUS_CTYPE_DECLS(BIG5);
    387  1.1  tshiozak _CITRUS_CTYPE_DEF_OPS(BIG5);
    388  1.1  tshiozak 
    389  1.1  tshiozak #include "citrus_ctype_template.h"
    390  1.6  tshiozak 
    391  1.6  tshiozak 
    392  1.6  tshiozak /* ----------------------------------------------------------------------
    393  1.6  tshiozak  * public interface for stdenc
    394  1.6  tshiozak  */
    395  1.6  tshiozak 
    396  1.6  tshiozak _CITRUS_STDENC_DECLS(BIG5);
    397  1.6  tshiozak _CITRUS_STDENC_DEF_OPS(BIG5);
    398  1.6  tshiozak 
    399  1.6  tshiozak #include "citrus_stdenc_template.h"
    400