source: buchla-68k/libsm/memcpyw.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: 505 bytes
Line 
1/*
2 =============================================================================
3 memcpyw.c -- copy words
4 Version 2 -- 1987-06-15 -- D.N. Lynx Crowe
5
6 Copy s2 to s1, always copy n words.
7 Return pointer to s1.
8 =============================================================================
9*/
10
11short *
12memcpyw(s1, s2, n)
13register short *s1, *s2;
14register int n;
15{
16 register short *os1 = s1;
17
18 while (--n >= 0)
19 *s1++ = *s2++;
20 return (os1);
21}
Note: See TracBrowser for help on using the repository browser.