Deleted Added
full compact
wchar.h (103269) wchar.h (103339)
1/*-
2 * Copyright (c)1999 Citrus Project,
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c)1999 Citrus Project,
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/include/wchar.h 103269 2002-09-12 23:33:17Z tjr $
26 * $FreeBSD: head/include/wchar.h 103339 2002-09-15 08:38:51Z tjr $
27 */
28
29/*-
30 * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
31 * All rights reserved.
32 *
33 * This code is derived from software contributed to The NetBSD Foundation
34 * by Julian Coleman.

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

139wchar_t *wcsncpy(wchar_t * __restrict , const wchar_t * __restrict, size_t);
140wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
141wchar_t *wcsrchr(const wchar_t *, wchar_t);
142size_t wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
143 mbstate_t * __restrict);
144size_t wcsspn(const wchar_t *, const wchar_t *);
145wchar_t *wcsstr(const wchar_t * __restrict, const wchar_t * __restrict);
146int wctob(wint_t);
27 */
28
29/*-
30 * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
31 * All rights reserved.
32 *
33 * This code is derived from software contributed to The NetBSD Foundation
34 * by Julian Coleman.

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

139wchar_t *wcsncpy(wchar_t * __restrict , const wchar_t * __restrict, size_t);
140wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
141wchar_t *wcsrchr(const wchar_t *, wchar_t);
142size_t wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
143 mbstate_t * __restrict);
144size_t wcsspn(const wchar_t *, const wchar_t *);
145wchar_t *wcsstr(const wchar_t * __restrict, const wchar_t * __restrict);
146int wctob(wint_t);
147double wcstod(const wchar_t * __restrict, wchar_t ** __restrict);
147wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
148 wchar_t ** __restrict);
149long wcstol(const wchar_t * __restrict, wchar_t ** __restrict, int);
150unsigned long
151 wcstoul(const wchar_t * __restrict, wchar_t ** __restrict, int);
152wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
153int wmemcmp(const wchar_t *, const wchar_t *, size_t);
154wchar_t *wmemcpy(wchar_t * __restrict, const wchar_t * __restrict, size_t);

--- 15 unchanged lines hidden ---
148wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
149 wchar_t ** __restrict);
150long wcstol(const wchar_t * __restrict, wchar_t ** __restrict, int);
151unsigned long
152 wcstoul(const wchar_t * __restrict, wchar_t ** __restrict, int);
153wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
154int wmemcmp(const wchar_t *, const wchar_t *, size_t);
155wchar_t *wmemcpy(wchar_t * __restrict, const wchar_t * __restrict, size_t);

--- 15 unchanged lines hidden ---