Home | History | Annotate | Line # | Download | only in modules
citrus_utf8.c revision 1.9
      1  1.9  tshiozak /*	$NetBSD: citrus_utf8.c,v 1.9 2003/06/26 12:09:58 tshiozak 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.1  tshiozak  * 3. All advertising materials mentioning features or use of this software
     45  1.1  tshiozak  *    must display the following acknowledgement:
     46  1.1  tshiozak  *	This product includes software developed by the University of
     47  1.1  tshiozak  *	California, Berkeley and its contributors.
     48  1.1  tshiozak  * 4. Neither the name of the University nor the names of its contributors
     49  1.1  tshiozak  *    may be used to endorse or promote products derived from this software
     50  1.1  tshiozak  *    without specific prior written permission.
     51  1.1  tshiozak  *
     52  1.1  tshiozak  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     53  1.1  tshiozak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     54  1.1  tshiozak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     55  1.1  tshiozak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     56  1.1  tshiozak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     57  1.1  tshiozak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     58  1.1  tshiozak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     59  1.1  tshiozak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     60  1.1  tshiozak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     61  1.1  tshiozak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     62  1.1  tshiozak  * SUCH DAMAGE.
     63  1.1  tshiozak  */
     64  1.1  tshiozak 
     65  1.1  tshiozak #include <sys/cdefs.h>
     66  1.1  tshiozak #if defined(LIBC_SCCS) && !defined(lint)
     67  1.9  tshiozak __RCSID("$NetBSD: citrus_utf8.c,v 1.9 2003/06/26 12:09:58 tshiozak Exp $");
     68  1.1  tshiozak #endif /* LIBC_SCCS and not lint */
     69  1.1  tshiozak 
     70  1.1  tshiozak #include <assert.h>
     71  1.1  tshiozak #include <errno.h>
     72  1.1  tshiozak #include <string.h>
     73  1.1  tshiozak #include <stdio.h>
     74  1.1  tshiozak #include <stdlib.h>
     75  1.1  tshiozak #include <stddef.h>
     76  1.1  tshiozak #include <locale.h>
     77  1.1  tshiozak #include <wchar.h>
     78  1.1  tshiozak #include <sys/types.h>
     79  1.1  tshiozak #include <limits.h>
     80  1.8  tshiozak 
     81  1.8  tshiozak #include "citrus_namespace.h"
     82  1.8  tshiozak #include "citrus_types.h"
     83  1.1  tshiozak #include "citrus_module.h"
     84  1.1  tshiozak #include "citrus_ctype.h"
     85  1.8  tshiozak #include "citrus_stdenc.h"
     86  1.1  tshiozak #include "citrus_utf8.h"
     87  1.1  tshiozak 
     88  1.1  tshiozak 
     89  1.1  tshiozak /* ----------------------------------------------------------------------
     90  1.1  tshiozak  * private stuffs used by templates
     91  1.1  tshiozak  */
     92  1.1  tshiozak 
     93  1.1  tshiozak static int _UTF8_count_array[256];
     94  1.1  tshiozak static int const *_UTF8_count = NULL;
     95  1.1  tshiozak 
     96  1.1  tshiozak static u_int32_t _UTF8_range[] = {
     97  1.1  tshiozak 	0,	/*dummy*/
     98  1.1  tshiozak 	0x00000000, 0x00000080, 0x00000800, 0x00010000,
     99  1.1  tshiozak 	0x00200000, 0x04000000, 0x80000000,
    100  1.1  tshiozak };
    101  1.1  tshiozak 
    102  1.1  tshiozak typedef struct {
    103  1.1  tshiozak 	char ch[6];
    104  1.1  tshiozak 	int chlen;
    105  1.1  tshiozak } _UTF8State;
    106  1.1  tshiozak 
    107  1.1  tshiozak typedef struct {
    108  1.1  tshiozak } _UTF8EncodingInfo;
    109  1.8  tshiozak 
    110  1.1  tshiozak typedef struct {
    111  1.1  tshiozak 	_UTF8EncodingInfo	ei;
    112  1.1  tshiozak 	struct {
    113  1.1  tshiozak 		/* for future multi-locale facility */
    114  1.1  tshiozak 		_UTF8State	s_mblen;
    115  1.1  tshiozak 		_UTF8State	s_mbrlen;
    116  1.1  tshiozak 		_UTF8State	s_mbrtowc;
    117  1.1  tshiozak 		_UTF8State	s_mbtowc;
    118  1.1  tshiozak 		_UTF8State	s_mbsrtowcs;
    119  1.1  tshiozak 		_UTF8State	s_wcrtomb;
    120  1.1  tshiozak 		_UTF8State	s_wcsrtombs;
    121  1.1  tshiozak 		_UTF8State	s_wctomb;
    122  1.1  tshiozak 	} states;
    123  1.1  tshiozak } _UTF8CTypeInfo;
    124  1.1  tshiozak 
    125  1.1  tshiozak #define _CEI_TO_EI(_cei_)		(&(_cei_)->ei)
    126  1.1  tshiozak #define _CEI_TO_STATE(_ei_, _func_)	(_ei_)->states.s_##_func_
    127  1.1  tshiozak 
    128  1.1  tshiozak #define _FUNCNAME(m)			_citrus_UTF8_##m
    129  1.1  tshiozak #define _ENCODING_INFO			_UTF8EncodingInfo
    130  1.1  tshiozak #define _CTYPE_INFO			_UTF8CTypeInfo
    131  1.1  tshiozak #define _ENCODING_STATE			_UTF8State
    132  1.3      yamt #define _ENCODING_MB_CUR_MAX(_ei_)	6
    133  1.1  tshiozak #define _ENCODING_IS_STATE_DEPENDENT	0
    134  1.5      yamt #define _STATE_NEEDS_EXPLICIT_INIT(_ps_)	0
    135  1.1  tshiozak 
    136  1.1  tshiozak 
    137  1.1  tshiozak static __inline void
    138  1.1  tshiozak _UTF8_init_count(void)
    139  1.1  tshiozak {
    140  1.1  tshiozak 	int i;
    141  1.1  tshiozak 	if (!_UTF8_count) {
    142  1.1  tshiozak 		memset(_UTF8_count_array, 0, sizeof(_UTF8_count_array));
    143  1.1  tshiozak 		for (i = 0; i <= 0x7f; i++)
    144  1.1  tshiozak 			_UTF8_count_array[i] = 1;
    145  1.1  tshiozak 		for (i = 0xc0; i <= 0xdf; i++)
    146  1.1  tshiozak 			_UTF8_count_array[i] = 2;
    147  1.1  tshiozak 		for (i = 0xe0; i <= 0xef; i++)
    148  1.1  tshiozak 			_UTF8_count_array[i] = 3;
    149  1.1  tshiozak 		for (i = 0xf0; i <= 0xf7; i++)
    150  1.1  tshiozak 			_UTF8_count_array[i] = 4;
    151  1.1  tshiozak 		for (i = 0xf8; i <= 0xfb; i++)
    152  1.1  tshiozak 			_UTF8_count_array[i] = 5;
    153  1.1  tshiozak 		for (i = 0xfc; i <= 0xfd; i++)
    154  1.1  tshiozak 			_UTF8_count_array[i] = 6;
    155  1.1  tshiozak 		_UTF8_count = _UTF8_count_array;
    156  1.1  tshiozak 	}
    157  1.1  tshiozak }
    158  1.1  tshiozak 
    159  1.1  tshiozak static int
    160  1.1  tshiozak _UTF8_findlen(wchar_t v)
    161  1.1  tshiozak {
    162  1.1  tshiozak 	int i;
    163  1.1  tshiozak 	u_int32_t c;
    164  1.1  tshiozak 
    165  1.1  tshiozak 	c = (u_int32_t)v;	/*XXX*/
    166  1.1  tshiozak 	for (i = 1; i < sizeof(_UTF8_range) / sizeof(_UTF8_range[0]); i++)
    167  1.1  tshiozak 		if (c >= _UTF8_range[i] && c < _UTF8_range[i + 1])
    168  1.1  tshiozak 			return i;
    169  1.1  tshiozak 
    170  1.1  tshiozak 	return -1;	/*out of range*/
    171  1.1  tshiozak }
    172  1.1  tshiozak 
    173  1.1  tshiozak static __inline void
    174  1.1  tshiozak /*ARGSUSED*/
    175  1.1  tshiozak _citrus_UTF8_init_state(_UTF8EncodingInfo *ei, _UTF8State *s)
    176  1.1  tshiozak {
    177  1.1  tshiozak 	memset(s, 0, sizeof(*s));
    178  1.1  tshiozak }
    179  1.1  tshiozak 
    180  1.1  tshiozak static __inline void
    181  1.1  tshiozak /*ARGSUSED*/
    182  1.1  tshiozak _citrus_UTF8_pack_state(_UTF8EncodingInfo *ei, void *pspriv,
    183  1.1  tshiozak 			const _UTF8State *s)
    184  1.1  tshiozak {
    185  1.1  tshiozak 	memcpy(pspriv, (const void *)s, sizeof(*s));
    186  1.1  tshiozak }
    187  1.1  tshiozak 
    188  1.1  tshiozak static __inline void
    189  1.1  tshiozak /*ARGSUSED*/
    190  1.1  tshiozak _citrus_UTF8_unpack_state(_UTF8EncodingInfo *ei, _UTF8State *s,
    191  1.1  tshiozak 			  const void *pspriv)
    192  1.1  tshiozak {
    193  1.1  tshiozak 	memcpy((void *)s, pspriv, sizeof(*s));
    194  1.1  tshiozak }
    195  1.1  tshiozak 
    196  1.1  tshiozak static int
    197  1.1  tshiozak _citrus_UTF8_mbrtowc_priv(_UTF8EncodingInfo *ei, wchar_t *pwc, const char **s,
    198  1.1  tshiozak 			  size_t n, _UTF8State *psenc, size_t *nresult)
    199  1.1  tshiozak {
    200  1.1  tshiozak 	wchar_t wchar;
    201  1.1  tshiozak 	const char *s0;
    202  1.1  tshiozak 	int c;
    203  1.1  tshiozak 	int i;
    204  1.1  tshiozak 	int chlenbak;
    205  1.1  tshiozak 
    206  1.1  tshiozak 	_DIAGASSERT(nresult != 0);
    207  1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    208  1.1  tshiozak 	_DIAGASSERT(s != NULL);
    209  1.1  tshiozak 	_DIAGASSERT(psenc != NULL);
    210  1.1  tshiozak 
    211  1.2      yamt 	s0 = *s;
    212  1.2      yamt 
    213  1.1  tshiozak 	if (s0 == NULL) {
    214  1.1  tshiozak 		_citrus_UTF8_init_state(ei, psenc);
    215  1.1  tshiozak 		*nresult = 0; /* state independent */
    216  1.1  tshiozak 		return (0);
    217  1.1  tshiozak 	}
    218  1.1  tshiozak 
    219  1.1  tshiozak 	chlenbak = psenc->chlen;
    220  1.1  tshiozak 
    221  1.1  tshiozak 	/* make sure we have the first byte in the buffer */
    222  1.1  tshiozak 	switch (psenc->chlen) {
    223  1.1  tshiozak 	case 0:
    224  1.1  tshiozak 		if (n < 1) {
    225  1.1  tshiozak 			goto restart;
    226  1.1  tshiozak 		}
    227  1.1  tshiozak 		psenc->ch[0] = *s0++;
    228  1.1  tshiozak 		psenc->chlen = 1;
    229  1.1  tshiozak 		n--;
    230  1.1  tshiozak 		break;
    231  1.1  tshiozak 	case 1: case 2: case 3: case 4: case 5:
    232  1.1  tshiozak 		break;
    233  1.1  tshiozak 	default:
    234  1.1  tshiozak 		/* illegal state */
    235  1.1  tshiozak 		goto ilseq;
    236  1.1  tshiozak 	}
    237  1.1  tshiozak 
    238  1.1  tshiozak 	c = _UTF8_count[psenc->ch[0] & 0xff];
    239  1.1  tshiozak 	if (c == 0)
    240  1.1  tshiozak 		goto ilseq;
    241  1.1  tshiozak 	while (psenc->chlen < c) {
    242  1.1  tshiozak 		if (n < 1) {
    243  1.1  tshiozak 			goto restart;
    244  1.1  tshiozak 		}
    245  1.1  tshiozak 		psenc->ch[psenc->chlen] = *s0++;
    246  1.1  tshiozak 		psenc->chlen++;
    247  1.1  tshiozak 		n--;
    248  1.1  tshiozak 	}
    249  1.1  tshiozak 
    250  1.1  tshiozak 	switch (c) {
    251  1.1  tshiozak 	case 1:
    252  1.1  tshiozak 		wchar = psenc->ch[0] & 0xff;
    253  1.1  tshiozak 		break;
    254  1.1  tshiozak 	case 2: case 3: case 4: case 5: case 6:
    255  1.1  tshiozak 		wchar = psenc->ch[0] & (0x7f >> c);
    256  1.1  tshiozak 		for (i = 1; i < c; i++) {
    257  1.1  tshiozak 			if ((psenc->ch[i] & 0xc0) != 0x80)
    258  1.1  tshiozak 				goto ilseq;
    259  1.1  tshiozak 			wchar <<= 6;
    260  1.1  tshiozak 			wchar |= (psenc->ch[i] & 0x3f);
    261  1.1  tshiozak 		}
    262  1.1  tshiozak 
    263  1.1  tshiozak 		_DIAGASSERT(findlen(wchar) == c);
    264  1.1  tshiozak 
    265  1.1  tshiozak 		break;
    266  1.1  tshiozak 	}
    267  1.1  tshiozak 
    268  1.1  tshiozak 	*s = s0;
    269  1.1  tshiozak 
    270  1.1  tshiozak 	psenc->chlen = 0;
    271  1.1  tshiozak 
    272  1.1  tshiozak 	if (pwc)
    273  1.1  tshiozak 		*pwc = wchar;
    274  1.1  tshiozak 
    275  1.1  tshiozak 	if (!wchar)
    276  1.1  tshiozak 		*nresult = 0;
    277  1.1  tshiozak 	else
    278  1.1  tshiozak 		*nresult = c - chlenbak;
    279  1.1  tshiozak 
    280  1.1  tshiozak 	return (0);
    281  1.1  tshiozak 
    282  1.1  tshiozak ilseq:
    283  1.1  tshiozak 	psenc->chlen = 0;
    284  1.7  tshiozak 	*nresult = (size_t)-1;
    285  1.1  tshiozak 	return (EILSEQ);
    286  1.1  tshiozak 
    287  1.1  tshiozak restart:
    288  1.7  tshiozak 	*s = s0;
    289  1.1  tshiozak 	*nresult = (size_t)-2;
    290  1.1  tshiozak 	return (0);
    291  1.1  tshiozak }
    292  1.1  tshiozak 
    293  1.1  tshiozak static int
    294  1.1  tshiozak _citrus_UTF8_wcrtomb_priv(_UTF8EncodingInfo *ei, char *s, size_t n, wchar_t wc,
    295  1.1  tshiozak 			  _UTF8State *psenc, size_t *nresult)
    296  1.1  tshiozak {
    297  1.8  tshiozak 	int cnt, i, ret;
    298  1.1  tshiozak 	wchar_t c;
    299  1.1  tshiozak 
    300  1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    301  1.1  tshiozak 	_DIAGASSERT(nresult != 0);
    302  1.1  tshiozak 	_DIAGASSERT(s != NULL);
    303  1.8  tshiozak 
    304  1.1  tshiozak 	cnt = _UTF8_findlen(wc);
    305  1.1  tshiozak 	if (cnt <= 0 || cnt > 6) {
    306  1.1  tshiozak 		/* invalid UCS4 value */
    307  1.8  tshiozak 		ret = EILSEQ;
    308  1.8  tshiozak 		goto err;
    309  1.1  tshiozak 	}
    310  1.1  tshiozak 	if (n < cnt) {
    311  1.1  tshiozak 		/* bound check failure */
    312  1.8  tshiozak 		ret = E2BIG;
    313  1.8  tshiozak 		goto err;
    314  1.1  tshiozak 	}
    315  1.1  tshiozak 
    316  1.1  tshiozak 	c = wc;
    317  1.1  tshiozak 	if (s) {
    318  1.1  tshiozak 		for (i = cnt - 1; i > 0; i--) {
    319  1.1  tshiozak 			s[i] = 0x80 | (c & 0x3f);
    320  1.1  tshiozak 			c >>= 6;
    321  1.1  tshiozak 		}
    322  1.1  tshiozak 		s[0] = c;
    323  1.1  tshiozak 		if (cnt == 1)
    324  1.1  tshiozak 			s[0] &= 0x7f;
    325  1.1  tshiozak 		else {
    326  1.1  tshiozak 			s[0] &= (0x7f >> cnt);
    327  1.1  tshiozak 			s[0] |= ((0xff00 >> cnt) & 0xff);
    328  1.1  tshiozak 		}
    329  1.1  tshiozak 	}
    330  1.1  tshiozak 
    331  1.1  tshiozak 	*nresult = (size_t)cnt;
    332  1.8  tshiozak 	return 0;
    333  1.1  tshiozak 
    334  1.8  tshiozak err:
    335  1.1  tshiozak 	*nresult = (size_t)-1;
    336  1.8  tshiozak 	return ret;
    337  1.8  tshiozak }
    338  1.8  tshiozak 
    339  1.8  tshiozak static __inline int
    340  1.8  tshiozak /*ARGSUSED*/
    341  1.8  tshiozak _citrus_UTF8_stdenc_wctocs(_UTF8EncodingInfo * __restrict ei,
    342  1.8  tshiozak 			   _csid_t * __restrict csid,
    343  1.8  tshiozak 			   _index_t * __restrict idx,
    344  1.8  tshiozak 			   wchar_t wc)
    345  1.8  tshiozak {
    346  1.8  tshiozak 
    347  1.8  tshiozak 	_DIAGASSERT(csid != NULL && idx != NULL);
    348  1.8  tshiozak 
    349  1.8  tshiozak 	*csid = 0;
    350  1.8  tshiozak 	*idx = (_citrus_index_t)wc;
    351  1.8  tshiozak 
    352  1.8  tshiozak 	return (0);
    353  1.1  tshiozak }
    354  1.1  tshiozak 
    355  1.8  tshiozak static __inline int
    356  1.8  tshiozak /*ARGSUSED*/
    357  1.8  tshiozak _citrus_UTF8_stdenc_cstowc(_UTF8EncodingInfo * __restrict ei,
    358  1.8  tshiozak 			   wchar_t * __restrict wc,
    359  1.8  tshiozak 			   _csid_t csid, _index_t idx)
    360  1.8  tshiozak {
    361  1.8  tshiozak 
    362  1.8  tshiozak 	_DIAGASSERT(wc != NULL);
    363  1.8  tshiozak 
    364  1.8  tshiozak 	if (csid != 0)
    365  1.8  tshiozak 		return (EILSEQ);
    366  1.8  tshiozak 
    367  1.8  tshiozak 	*wc = (wchar_t)idx;
    368  1.8  tshiozak 
    369  1.8  tshiozak 	return (0);
    370  1.8  tshiozak }
    371  1.1  tshiozak 
    372  1.1  tshiozak static int
    373  1.1  tshiozak /*ARGSUSED*/
    374  1.8  tshiozak _citrus_UTF8_encoding_module_init(_UTF8EncodingInfo * __restrict ei,
    375  1.8  tshiozak 				  const void * __restrict var, size_t lenvar)
    376  1.1  tshiozak {
    377  1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    378  1.1  tshiozak 
    379  1.1  tshiozak 	_UTF8_init_count();
    380  1.1  tshiozak 	memset((void *)ei, 0, sizeof(*ei));
    381  1.1  tshiozak 
    382  1.8  tshiozak 	return 0;
    383  1.1  tshiozak }
    384  1.1  tshiozak 
    385  1.1  tshiozak static void
    386  1.1  tshiozak /*ARGSUSED*/
    387  1.8  tshiozak _citrus_UTF8_encoding_module_uninit(_UTF8EncodingInfo *ei)
    388  1.1  tshiozak {
    389  1.1  tshiozak }
    390  1.1  tshiozak 
    391  1.1  tshiozak 
    392  1.1  tshiozak /* ----------------------------------------------------------------------
    393  1.1  tshiozak  * public interface for ctype
    394  1.1  tshiozak  */
    395  1.1  tshiozak 
    396  1.1  tshiozak _CITRUS_CTYPE_DECLS(UTF8);
    397  1.1  tshiozak _CITRUS_CTYPE_DEF_OPS(UTF8);
    398  1.1  tshiozak 
    399  1.1  tshiozak #include "citrus_ctype_template.h"
    400  1.8  tshiozak 
    401  1.8  tshiozak /* ----------------------------------------------------------------------
    402  1.8  tshiozak  * public interface for stdenc
    403  1.8  tshiozak  */
    404  1.8  tshiozak 
    405  1.8  tshiozak _CITRUS_STDENC_DECLS(UTF8);
    406  1.8  tshiozak _CITRUS_STDENC_DEF_OPS(UTF8);
    407  1.8  tshiozak 
    408  1.8  tshiozak #include "citrus_stdenc_template.h"
    409