Deleted Added
full compact
strcat.S (1849) strcat.S (5790)
1/*
2 * Copyright (c) 1993 Winning Strategies, Inc.
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

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

22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
1/*
2 * Copyright (c) 1993 Winning Strategies, Inc.
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

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

22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * $Id: strcat.S,v 1.1 1993/12/05 13:01:56 ats Exp $
30 * $Id: strcat.S,v 1.1 1994/08/05 01:18:32 wollman Exp $
31 */
32
33#if defined(LIBC_RCS) && !defined(lint)
31 */
32
33#if defined(LIBC_RCS) && !defined(lint)
34 .asciz "$Id: strcat.S,v 1.1 1993/12/05 13:01:56 ats Exp $"
34 .text
35 .asciz "$Id: strcat.S,v 1.1 1994/08/05 01:18:32 wollman Exp $"
35#endif /* LIBC_RCS and not lint */
36
37#include "DEFS.h"
38
39/*
40 * strcat(s, append)
41 * append a copy of the null-terminated string "append" to the end
42 * of the null-terminated string s, then add a terminating `\0'.

--- 63 unchanged lines hidden ---
36#endif /* LIBC_RCS and not lint */
37
38#include "DEFS.h"
39
40/*
41 * strcat(s, append)
42 * append a copy of the null-terminated string "append" to the end
43 * of the null-terminated string s, then add a terminating `\0'.

--- 63 unchanged lines hidden ---