Deleted Added
full compact
wchar.h (132242) wchar.h (132497)
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 132242 2004-07-16 06:06:09Z tjr $
26 * $FreeBSD: head/include/wchar.h 132497 2004-07-21 10:54:57Z 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.

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

204
205#if __XSI_VISIBLE
206int wcswidth(const wchar_t *, size_t);
207int wcwidth(wchar_t);
208#endif
209
210#if __BSD_VISIBLE
211wchar_t *fgetwln(struct __sFILE * __restrict, size_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.

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

204
205#if __XSI_VISIBLE
206int wcswidth(const wchar_t *, size_t);
207int wcwidth(wchar_t);
208#endif
209
210#if __BSD_VISIBLE
211wchar_t *fgetwln(struct __sFILE * __restrict, size_t * __restrict);
212size_t mbsnrtowcs(wchar_t * __restrict, const char ** __restrict, size_t,
213 size_t, mbstate_t * __restrict);
214size_t wcsnrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
215 size_t, mbstate_t * __restrict);
212size_t wcslcat(wchar_t *, const wchar_t *, size_t);
213size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
214#endif
215__END_DECLS
216
217#endif /* !_WCHAR_H_ */
216size_t wcslcat(wchar_t *, const wchar_t *, size_t);
217size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
218#endif
219__END_DECLS
220
221#endif /* !_WCHAR_H_ */