X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..23e20b0053d7317ce3facd3fd38db8c73c2c380a:/locale/FreeBSD/big5.c diff --git a/locale/FreeBSD/big5.c b/locale/FreeBSD/big5.c index ef2fd4e..bb3daf0 100644 --- a/locale/FreeBSD/big5.c +++ b/locale/FreeBSD/big5.c @@ -41,6 +41,8 @@ static char sccsid[] = "@(#)big5.c 8.1 (Berkeley) 6/4/93"; #include __FBSDID("$FreeBSD: src/lib/libc/locale/big5.c,v 1.18 2007/10/13 16:28:21 ache Exp $"); +#include "xlocale_private.h" + #include #include #include @@ -49,33 +51,30 @@ __FBSDID("$FreeBSD: src/lib/libc/locale/big5.c,v 1.18 2007/10/13 16:28:21 ache E #include #include "mblocal.h" -extern int __mb_sb_limit; - static size_t _BIG5_mbrtowc(wchar_t * __restrict, const char * __restrict, - size_t, mbstate_t * __restrict); -static int _BIG5_mbsinit(const mbstate_t *); + size_t, mbstate_t * __restrict, locale_t); +static int _BIG5_mbsinit(const mbstate_t *, locale_t); static size_t _BIG5_wcrtomb(char * __restrict, wchar_t, - mbstate_t * __restrict); + mbstate_t * __restrict, locale_t); typedef struct { wchar_t ch; } _BIG5State; int -_BIG5_init(_RuneLocale *rl) +_BIG5_init(struct __xlocale_st_runelocale *xrl) { - __mbrtowc = _BIG5_mbrtowc; - __wcrtomb = _BIG5_wcrtomb; - __mbsinit = _BIG5_mbsinit; - _CurrentRuneLocale = rl; - __mb_cur_max = 2; - __mb_sb_limit = 128; + xrl->__mbrtowc = _BIG5_mbrtowc; + xrl->__wcrtomb = _BIG5_wcrtomb; + xrl->__mbsinit = _BIG5_mbsinit; + xrl->__mb_cur_max = 2; + xrl->__mb_sb_limit = 128; return (0); } static int -_BIG5_mbsinit(const mbstate_t *ps) +_BIG5_mbsinit(const mbstate_t *ps, locale_t loc __unused) { return (ps == NULL || ((const _BIG5State *)ps)->ch == 0); @@ -91,7 +90,7 @@ _big5_check(u_int c) static size_t _BIG5_mbrtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n, - mbstate_t * __restrict ps) + mbstate_t * __restrict ps, locale_t loc __unused) { _BIG5State *bs; wchar_t wc; @@ -151,7 +150,7 @@ _BIG5_mbrtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n, } static size_t -_BIG5_wcrtomb(char * __restrict s, wchar_t wc, mbstate_t * __restrict ps) +_BIG5_wcrtomb(char * __restrict s, wchar_t wc, mbstate_t * __restrict ps, locale_t loc __unused) { _BIG5State *bs;