table.c (ea4ac135ff6e5e1881e3ebe0e730bcf1223cfbe7) | table.c (1949a3470f29c5edaa5fc2770c2886d653fa68d1) |
---|---|
1/*- 2 * Copyright (c) 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Paul Borman at Krystal Technologies. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 241 unchanged lines hidden (view full) --- 250}; 251 252_RuneLocale *_CurrentRuneLocale = &_DefaultRuneLocale; 253 254int __mb_cur_max = 1; 255size_t (*__mbrtowc)(wchar_t * __restrict, const char * __restrict, size_t, 256 mbstate_t * __restrict) = _none_mbrtowc; 257int (*__mbsinit)(const mbstate_t *) = _none_mbsinit; | 1/*- 2 * Copyright (c) 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Paul Borman at Krystal Technologies. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 241 unchanged lines hidden (view full) --- 250}; 251 252_RuneLocale *_CurrentRuneLocale = &_DefaultRuneLocale; 253 254int __mb_cur_max = 1; 255size_t (*__mbrtowc)(wchar_t * __restrict, const char * __restrict, size_t, 256 mbstate_t * __restrict) = _none_mbrtowc; 257int (*__mbsinit)(const mbstate_t *) = _none_mbsinit; |
258size_t (*__mbsrtowcs)(wchar_t * __restrict, const char ** __restrict, 259 size_t, mbstate_t * __restrict) = _none_mbsrtowcs; | 258size_t (*__mbsnrtowcs)(wchar_t * __restrict, const char ** __restrict, 259 size_t, size_t, mbstate_t * __restrict) = _none_mbsnrtowcs; |
260size_t (*__wcrtomb)(char * __restrict, wchar_t, mbstate_t * __restrict) = 261 _none_wcrtomb; | 260size_t (*__wcrtomb)(char * __restrict, wchar_t, mbstate_t * __restrict) = 261 _none_wcrtomb; |
262size_t (*__wcsrtombs)(char * __restrict, const wchar_t ** __restrict, 263 size_t, mbstate_t * __restrict) = _none_wcsrtombs; | 262size_t (*__wcsnrtombs)(char * __restrict, const wchar_t ** __restrict, 263 size_t, size_t, mbstate_t * __restrict) = _none_wcsnrtombs; |