Deleted Added
full compact
table.c (129179) table.c (132497)
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

--- 24 unchanged lines hidden (view full) ---

33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)table.c 8.1 (Berkeley) 6/27/93";
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
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

--- 24 unchanged lines hidden (view full) ---

33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)table.c 8.1 (Berkeley) 6/27/93";
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/lib/libc/locale/table.c 129179 2004-05-13 11:20:27Z tjr $");
41__FBSDID("$FreeBSD: head/lib/libc/locale/table.c 132497 2004-07-21 10:54:57Z tjr $");
42
43#include <ctype.h>
44#include <rune.h>
45#include <wchar.h>
46#include "mblocal.h"
47
48_RuneLocale _DefaultRuneLocale = {
49 _RUNE_MAGIC_1,

--- 200 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;
42
43#include <ctype.h>
44#include <rune.h>
45#include <wchar.h>
46#include "mblocal.h"
47
48_RuneLocale _DefaultRuneLocale = {
49 _RUNE_MAGIC_1,

--- 200 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;