source: buchla-68k/libsm/strncat.c@ 109c83b

Last change on this file since 109c83b was 109c83b, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Compiled full ROM in Hatari.

  • Property mode set to 100644
File size: 592 bytes
Line 
1/*
2 =============================================================================
3 strncat.c -- concatenate strings
4 Version 1 -- 1987-06-12
5
6 Concatenate s2 on the end of s1. S1's space must be large enough.
7 At most n characters are moved.
8 Return s1.
9 =============================================================================
10*/
11
12char *
13strncat(s1, s2, n)
14register char *s1, *s2;
15register int n;
16{
17 register char *os1;
18
19 os1 = s1;
20
21 while(*s1++)
22 ;
23
24 --s1;
25
26 while(*s1++ = *s2++)
27 if(--n < 0) {
28
29 *--s1 = '\0';
30 break;
31 }
32
33 return(os1);
34}
Note: See TracBrowser for help on using the repository browser.