|
Last change
on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Point of no return.
|
-
Property mode
set to
100644
|
|
File size:
426 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | =============================================================================
|
|---|
| 3 | memcpy.c -- copy memory
|
|---|
| 4 | Version 1 -- 1987-06-12
|
|---|
| 5 |
|
|---|
| 6 | Copy s2 to s1, always copy n bytes.
|
|---|
| 7 | Return s1.
|
|---|
| 8 | =============================================================================
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | char *memcpy(char *s1, char *s2, int n)
|
|---|
| 12 | {
|
|---|
| 13 | register char *os1 = s1;
|
|---|
| 14 |
|
|---|
| 15 | while (--n >= 0)
|
|---|
| 16 | *s1++ = *s2++;
|
|---|
| 17 | return (os1);
|
|---|
| 18 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.