Deleted Added
full compact
swab.c (77117) swab.c (86170)
1/*
2 * Copyright (c) 1988, 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 * Jeffrey Mogul.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
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[] = "@(#)swab.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
1/*
2 * Copyright (c) 1988, 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 * Jeffrey Mogul.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
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[] = "@(#)swab.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
40#ifndef lint
41static const char rcsid[] =
42 "$FreeBSD: head/lib/libc/string/swab.c 77117 2001-05-24 08:47:42Z obrien $";
43#endif
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/lib/libc/string/swab.c 86170 2001-11-07 19:55:16Z obrien $");
44
45#include <string.h>
46
47void
48swab(from, to, len)
49 const void *from;
50 void *to;
51 size_t len;

--- 18 unchanged lines hidden ---
42
43#include <string.h>
44
45void
46swab(from, to, len)
47 const void *from;
48 void *to;
49 size_t len;

--- 18 unchanged lines hidden ---