source:
buchla-68k/libsm/memcpy.c@
c3aee8a
Last change on this file since c3aee8a was 7258c6a, checked in by , 8 years ago | |
---|---|
|
|
File size: 416 bytes |
Rev | Line | |
---|---|---|
[f40a309] | 1 | /* |
2 | ============================================================================= | |
3 | memcpy.c -- copy memory | |
4 | Version 1 -- 1987-06-12 | |
5 | ||
[5c13d64] | 6 | Copy vp2 to vp1, always copy n bytes. |
7 | Return vp1. | |
[f40a309] | 8 | ============================================================================= |
9 | */ | |
10 | ||
[7258c6a] | 11 | void *memcpy(void *vp1, void *vp2, int16_t n) |
[f40a309] | 12 | { |
[7258c6a] | 13 | int8_t *cp1 = vp1; |
14 | int8_t *cp2 = vp2; | |
[f40a309] | 15 | |
[5c13d64] | 16 | while (--n >= 0) |
17 | *cp1++ = *cp2++; | |
18 | ||
19 | return(vp1); | |
[f40a309] | 20 | } |
Note:
See TracBrowser
for help on using the repository browser.