source: buchla-68k/libsm/memsetw.c@ 0580615

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

Point of no return.

  • Property mode set to 100644
File size: 493 bytes
Line 
1/*
2 =============================================================================
3 memset.c -- fill memory with short words
4 Version 1 -- 1987-03-18 -- D.N. Lynx Crowe
5
6 Set an array of n shorts starting at sp to the short w.
7 Return pointer to sp.
8 =============================================================================
9*/
10
11short *memsetw(short *sp, short w, short n)
12{
13 register short *sp0 = sp;
14
15 while (--n >= 0)
16 *sp++ = w;
17
18 return(sp0);
19}
Note: See TracBrowser for help on using the repository browser.