|
Last change
on this file since ba51a45 was dade7a0, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
No more warnings in libsm.
|
-
Property mode
set to
100644
|
|
File size:
479 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 |
|
|---|
| 11 | #include "ram.h"
|
|---|
| 12 |
|
|---|
| 13 | int8_t *strcat(int8_t *s1, int8_t *s2)
|
|---|
| 14 | {
|
|---|
| 15 | register int8_t *os1;
|
|---|
| 16 |
|
|---|
| 17 | os1 = s1;
|
|---|
| 18 |
|
|---|
| 19 | while (*s1++)
|
|---|
| 20 | ;
|
|---|
| 21 |
|
|---|
| 22 | --s1;
|
|---|
| 23 |
|
|---|
| 24 | while ((*s1++ = *s2++))
|
|---|
| 25 | ;
|
|---|
| 26 |
|
|---|
| 27 | return(os1);
|
|---|
| 28 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.