12051a8f2STim J. Robbins /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3d915a14eSPedro F. Giffuni * 47b247341SBaptiste Daroussin * Copyright 2013 Garrett D'Amore <garrett@damore.org> 57b247341SBaptiste Daroussin * Copyright 2011 Nexenta Systems, Inc. All rights reserved. 62051a8f2STim J. Robbins * Copyright (c) 2004 Tim J. Robbins. 72051a8f2STim J. Robbins * All rights reserved. 82051a8f2STim J. Robbins * 93c87aa1dSDavid Chisnall * Copyright (c) 2011 The FreeBSD Foundation 105b5fa75aSEd Maste * 113c87aa1dSDavid Chisnall * Portions of this software were developed by David Chisnall 123c87aa1dSDavid Chisnall * under sponsorship from the FreeBSD Foundation. 133c87aa1dSDavid Chisnall * 142051a8f2STim J. Robbins * Redistribution and use in source and binary forms, with or without 152051a8f2STim J. Robbins * modification, are permitted provided that the following conditions 162051a8f2STim J. Robbins * are met: 172051a8f2STim J. Robbins * 1. Redistributions of source code must retain the above copyright 182051a8f2STim J. Robbins * notice, this list of conditions and the following disclaimer. 192051a8f2STim J. Robbins * 2. Redistributions in binary form must reproduce the above copyright 202051a8f2STim J. Robbins * notice, this list of conditions and the following disclaimer in the 212051a8f2STim J. Robbins * documentation and/or other materials provided with the distribution. 222051a8f2STim J. Robbins * 232051a8f2STim J. Robbins * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 242051a8f2STim J. Robbins * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 252051a8f2STim J. Robbins * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 262051a8f2STim J. Robbins * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 272051a8f2STim J. Robbins * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 282051a8f2STim J. Robbins * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 292051a8f2STim J. Robbins * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 302051a8f2STim J. Robbins * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 312051a8f2STim J. Robbins * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 322051a8f2STim J. Robbins * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 332051a8f2STim J. Robbins * SUCH DAMAGE. 342051a8f2STim J. Robbins * 352051a8f2STim J. Robbins * $FreeBSD$ 362051a8f2STim J. Robbins */ 372051a8f2STim J. Robbins 382051a8f2STim J. Robbins #ifndef _MBLOCAL_H_ 392051a8f2STim J. Robbins #define _MBLOCAL_H_ 402051a8f2STim J. Robbins 41a964324eSRong-En Fan #include <runetype.h> 423c87aa1dSDavid Chisnall #include "xlocale_private.h" 43a964324eSRong-En Fan 447b247341SBaptiste Daroussin #define SS2 0x008e 457b247341SBaptiste Daroussin #define SS3 0x008f 46e94c6cb4SAlexey Zelkin 47e94c6cb4SAlexey Zelkin /* 482051a8f2STim J. Robbins * Conversion function pointers for current encoding. 492051a8f2STim J. Robbins */ 503c87aa1dSDavid Chisnall struct xlocale_ctype { 513c87aa1dSDavid Chisnall struct xlocale_component header; 523c87aa1dSDavid Chisnall _RuneLocale *runes; 533c87aa1dSDavid Chisnall size_t (*__mbrtowc)(wchar_t * __restrict, const char * __restrict, 542051a8f2STim J. Robbins size_t, mbstate_t * __restrict); 553c87aa1dSDavid Chisnall int (*__mbsinit)(const mbstate_t *); 563c87aa1dSDavid Chisnall size_t (*__mbsnrtowcs)(wchar_t * __restrict, const char ** __restrict, 571949a347STim J. Robbins size_t, size_t, mbstate_t * __restrict); 583c87aa1dSDavid Chisnall size_t (*__wcrtomb)(char * __restrict, wchar_t, mbstate_t * __restrict); 593c87aa1dSDavid Chisnall size_t (*__wcsnrtombs)(char * __restrict, const wchar_t ** __restrict, 601949a347STim J. Robbins size_t, size_t, mbstate_t * __restrict); 613c87aa1dSDavid Chisnall int __mb_cur_max; 623c87aa1dSDavid Chisnall int __mb_sb_limit; 639eb7d595SYuri Pankov /** Persistent state used by mblen() calls. */ 649eb7d595SYuri Pankov __mbstate_t mblen; 659eb7d595SYuri Pankov /** Persistent state used by mbrlen() calls. */ 669eb7d595SYuri Pankov __mbstate_t mbrlen; 679eb7d595SYuri Pankov /** Persistent state used by mbrtoc16() calls. */ 689eb7d595SYuri Pankov __mbstate_t mbrtoc16; 699eb7d595SYuri Pankov /** Persistent state used by mbrtoc32() calls. */ 709eb7d595SYuri Pankov __mbstate_t mbrtoc32; 719eb7d595SYuri Pankov /** Persistent state used by mbrtowc() calls. */ 729eb7d595SYuri Pankov __mbstate_t mbrtowc; 739eb7d595SYuri Pankov /** Persistent state used by mbsnrtowcs() calls. */ 749eb7d595SYuri Pankov __mbstate_t mbsnrtowcs; 759eb7d595SYuri Pankov /** Persistent state used by mbsrtowcs() calls. */ 769eb7d595SYuri Pankov __mbstate_t mbsrtowcs; 779eb7d595SYuri Pankov /** Persistent state used by mbtowc() calls. */ 789eb7d595SYuri Pankov __mbstate_t mbtowc; 799eb7d595SYuri Pankov /** Persistent state used by c16rtomb() calls. */ 809eb7d595SYuri Pankov __mbstate_t c16rtomb; 819eb7d595SYuri Pankov /** Persistent state used by c32rtomb() calls. */ 829eb7d595SYuri Pankov __mbstate_t c32rtomb; 839eb7d595SYuri Pankov /** Persistent state used by wcrtomb() calls. */ 849eb7d595SYuri Pankov __mbstate_t wcrtomb; 859eb7d595SYuri Pankov /** Persistent state used by wcsnrtombs() calls. */ 869eb7d595SYuri Pankov __mbstate_t wcsnrtombs; 879eb7d595SYuri Pankov /** Persistent state used by wcsrtombs() calls. */ 889eb7d595SYuri Pankov __mbstate_t wcsrtombs; 899eb7d595SYuri Pankov /** Persistent state used by wctomb() calls. */ 909eb7d595SYuri Pankov __mbstate_t wctomb; 913c87aa1dSDavid Chisnall }; 923c87aa1dSDavid Chisnall #define XLOCALE_CTYPE(x) ((struct xlocale_ctype*)(x)->components[XLC_CTYPE]) 933c87aa1dSDavid Chisnall extern struct xlocale_ctype __xlocale_global_ctype; 943c87aa1dSDavid Chisnall 953c87aa1dSDavid Chisnall /* 963c87aa1dSDavid Chisnall * Rune initialization function prototypes. 973c87aa1dSDavid Chisnall */ 98ba7161edSPedro F. Giffuni int _none_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 99ba7161edSPedro F. Giffuni int _UTF8_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 100ba7161edSPedro F. Giffuni int _EUC_CN_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 101ba7161edSPedro F. Giffuni int _EUC_JP_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 102ba7161edSPedro F. Giffuni int _EUC_KR_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 103ba7161edSPedro F. Giffuni int _EUC_TW_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 104ba7161edSPedro F. Giffuni int _GB18030_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 105ba7161edSPedro F. Giffuni int _GB2312_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 106ba7161edSPedro F. Giffuni int _GBK_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 107ba7161edSPedro F. Giffuni int _BIG5_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 108ba7161edSPedro F. Giffuni int _MSKanji_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 109ba7161edSPedro F. Giffuni int _ascii_init(struct xlocale_ctype *, _RuneLocale *) __hidden; 1102051a8f2STim J. Robbins 1117b247341SBaptiste Daroussin typedef size_t (*mbrtowc_pfn_t)(wchar_t * __restrict, 1127b247341SBaptiste Daroussin const char * __restrict, size_t, mbstate_t * __restrict); 1137b247341SBaptiste Daroussin typedef size_t (*wcrtomb_pfn_t)(char * __restrict, wchar_t, 1147b247341SBaptiste Daroussin mbstate_t * __restrict); 1157b247341SBaptiste Daroussin size_t __mbsnrtowcs_std(wchar_t * __restrict, const char ** __restrict, 1167b247341SBaptiste Daroussin size_t, size_t, mbstate_t * __restrict, mbrtowc_pfn_t); 1177b247341SBaptiste Daroussin size_t __wcsnrtombs_std(char * __restrict, const wchar_t ** __restrict, 1187b247341SBaptiste Daroussin size_t, size_t, mbstate_t * __restrict, wcrtomb_pfn_t); 1192051a8f2STim J. Robbins 1202051a8f2STim J. Robbins #endif /* _MBLOCAL_H_ */ 121