Deleted Added
full compact
wchar.h (133564) wchar.h (149011)
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 133564 2004-08-12 12:19:11Z tjr $
26 * $FreeBSD: head/include/wchar.h 149011 2005-08-13 05:54:33Z 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.

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

209int wcwidth(wchar_t);
210#define wcwidth(_c) __wcwidth(_c)
211#endif
212
213#if __BSD_VISIBLE
214wchar_t *fgetwln(struct __sFILE * __restrict, size_t * __restrict);
215size_t mbsnrtowcs(wchar_t * __restrict, const char ** __restrict, size_t,
216 size_t, mbstate_t * __restrict);
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.

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

209int wcwidth(wchar_t);
210#define wcwidth(_c) __wcwidth(_c)
211#endif
212
213#if __BSD_VISIBLE
214wchar_t *fgetwln(struct __sFILE * __restrict, size_t * __restrict);
215size_t mbsnrtowcs(wchar_t * __restrict, const char ** __restrict, size_t,
216 size_t, mbstate_t * __restrict);
217wchar_t *wcsdup(const wchar_t *);
217size_t wcsnrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
218 size_t, mbstate_t * __restrict);
219size_t wcslcat(wchar_t *, const wchar_t *, size_t);
220size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
221#endif
222__END_DECLS
223
224#endif /* !_WCHAR_H_ */
218size_t wcsnrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
219 size_t, mbstate_t * __restrict);
220size_t wcslcat(wchar_t *, const wchar_t *, size_t);
221size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
222#endif
223__END_DECLS
224
225#endif /* !_WCHAR_H_ */