source: buchla-68k/libsm/strcat.c@ 7848656

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

Spaces to tabs.

  • Property mode set to 100644
File size: 457 bytes
Line 
1/*
2 =============================================================================
3 strcat.c -- concatenate strings
4 Version 1 -- 1987-06-12
5
6 Concatenate s2 onto the end of s1. S1's space must be large enough.
7 Return s1.
8 =============================================================================
9*/
10
11int8_t *strcat(int8_t *s1, int8_t *s2)
12{
13 register int8_t *os1;
14
15 os1 = s1;
16
17 while(*s1++)
18 ;
19
20 --s1;
21
22 while(*s1++ = *s2++)
23 ;
24
25 return(os1);
26}
Note: See TracBrowser for help on using the repository browser.