source: buchla-68k/libsm/memset.c@ 5c13d64

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

Use void pointers for mem*() functions.

  • Property mode set to 100644
File size: 398 bytes
RevLine 
[f40a309]1/*
2 =============================================================================
3 memset.c -- fill memory
4 Version 1 -- 1987-06-12
5
[5c13d64]6 Set an array of n chars starting at vp to the character c.
7 Return vp.
[f40a309]8 =============================================================================
9*/
10
[5c13d64]11void *memset(void *vp, char c, int n)
[f40a309]12{
[5c13d64]13 char *cp = vp;
[f40a309]14
[5c13d64]15 while (--n >= 0)
16 *cp++ = c;
[f40a309]17
[5c13d64]18 return(vp);
[f40a309]19}
Note: See TracBrowser for help on using the repository browser.