14297a3b0SGarrett D'Amore /* 2*62c3776aSGarrett D'Amore * Copyright 2013 Garrett D'Amore <garrett@damore.org> 39d04e500SGarrett D'Amore * Copyright 2011 Nexenta Systems, Inc. All rights reserved. 44297a3b0SGarrett D'Amore * Copyright (c) 2004 Tim J. Robbins. 54297a3b0SGarrett D'Amore * All rights reserved. 64297a3b0SGarrett D'Amore * 74297a3b0SGarrett D'Amore * Redistribution and use in source and binary forms, with or without 84297a3b0SGarrett D'Amore * modification, are permitted provided that the following conditions 94297a3b0SGarrett D'Amore * are met: 104297a3b0SGarrett D'Amore * 1. Redistributions of source code must retain the above copyright 114297a3b0SGarrett D'Amore * notice, this list of conditions and the following disclaimer. 124297a3b0SGarrett D'Amore * 2. Redistributions in binary form must reproduce the above copyright 134297a3b0SGarrett D'Amore * notice, this list of conditions and the following disclaimer in the 144297a3b0SGarrett D'Amore * documentation and/or other materials provided with the distribution. 154297a3b0SGarrett D'Amore * 164297a3b0SGarrett D'Amore * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 174297a3b0SGarrett D'Amore * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 184297a3b0SGarrett D'Amore * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 194297a3b0SGarrett D'Amore * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 204297a3b0SGarrett D'Amore * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 214297a3b0SGarrett D'Amore * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 224297a3b0SGarrett D'Amore * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 234297a3b0SGarrett D'Amore * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 244297a3b0SGarrett D'Amore * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 254297a3b0SGarrett D'Amore * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 264297a3b0SGarrett D'Amore * SUCH DAMAGE. 274297a3b0SGarrett D'Amore */ 284297a3b0SGarrett D'Amore 294297a3b0SGarrett D'Amore #ifndef _MBLOCAL_H_ 304297a3b0SGarrett D'Amore #define _MBLOCAL_H_ 314297a3b0SGarrett D'Amore 324297a3b0SGarrett D'Amore #include "runetype.h" 33*62c3776aSGarrett D'Amore #include "lctype.h" 344297a3b0SGarrett D'Amore 354297a3b0SGarrett D'Amore /* 364297a3b0SGarrett D'Amore * Rune initialization function prototypes. 374297a3b0SGarrett D'Amore */ 38*62c3776aSGarrett D'Amore void _none_init(struct lc_ctype *); 39*62c3776aSGarrett D'Amore void _UTF8_init(struct lc_ctype *); 40*62c3776aSGarrett D'Amore void _EUC_CN_init(struct lc_ctype *); 41*62c3776aSGarrett D'Amore void _EUC_JP_init(struct lc_ctype *); 42*62c3776aSGarrett D'Amore void _EUC_KR_init(struct lc_ctype *); 43*62c3776aSGarrett D'Amore void _EUC_TW_init(struct lc_ctype *); 44*62c3776aSGarrett D'Amore void _GB18030_init(struct lc_ctype *); 45*62c3776aSGarrett D'Amore void _GB2312_init(struct lc_ctype *); 46*62c3776aSGarrett D'Amore void _GBK_init(struct lc_ctype *); 47*62c3776aSGarrett D'Amore void _BIG5_init(struct lc_ctype *); 48*62c3776aSGarrett D'Amore void _MSKanji_init(struct lc_ctype *); 494297a3b0SGarrett D'Amore 50*62c3776aSGarrett D'Amore typedef size_t (*mbrtowc_pfn_t)(wchar_t *_RESTRICT_KYWD, 514297a3b0SGarrett D'Amore const char *_RESTRICT_KYWD, size_t, mbstate_t *_RESTRICT_KYWD); 52*62c3776aSGarrett D'Amore typedef size_t (*wcrtomb_pfn_t)(char *_RESTRICT_KYWD, wchar_t, 534297a3b0SGarrett D'Amore mbstate_t *_RESTRICT_KYWD); 544297a3b0SGarrett D'Amore size_t __mbsnrtowcs_std(wchar_t *_RESTRICT_KYWD, const char **_RESTRICT_KYWD, 55*62c3776aSGarrett D'Amore size_t, size_t, mbstate_t *_RESTRICT_KYWD, mbrtowc_pfn_t); 564297a3b0SGarrett D'Amore size_t __wcsnrtombs_std(char *_RESTRICT_KYWD, const wchar_t **_RESTRICT_KYWD, 57*62c3776aSGarrett D'Amore size_t, size_t, mbstate_t *_RESTRICT_KYWD, wcrtomb_pfn_t); 584297a3b0SGarrett D'Amore 594297a3b0SGarrett D'Amore #define MIN(a, b) ((a) < (b) ? (a) : (b)) 604297a3b0SGarrett D'Amore 614297a3b0SGarrett D'Amore #endif /* _MBLOCAL_H_ */ 62