source:
buchla-68k/libsm/memsetw.c@
c3aee8a
Last change on this file since c3aee8a was 7258c6a, checked in by , 8 years ago | |
---|---|
|
|
File size: 451 bytes |
Rev | Line | |
---|---|---|
[f40a309] | 1 | /* |
2 | ============================================================================= | |
3 | memset.c -- fill memory with short words | |
4 | Version 1 -- 1987-03-18 -- D.N. Lynx Crowe | |
5 | ||
[5c13d64] | 6 | Set an array of n shorts starting at vp to the short s. |
7 | Return pointer to vp. | |
[f40a309] | 8 | ============================================================================= |
9 | */ | |
10 | ||
[7258c6a] | 11 | void *memsetw(void *vp, int16_t s, int16_t n) |
[f40a309] | 12 | { |
[7258c6a] | 13 | int16_t *sp = vp; |
[f40a309] | 14 | |
[5c13d64] | 15 | while (--n >= 0) |
16 | *sp++ = s; | |
[f40a309] | 17 | |
[5c13d64] | 18 | return(vp); |
[f40a309] | 19 | } |
Note:
See TracBrowser
for help on using the repository browser.