home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / dnet / dnet2.3.2 / amiga / suplib / bset.c < prev    next >
Encoding:
Text File  |  1994-06-29  |  229 b   |  12 lines

  1.  
  2. /* BSet: set memory to value 
  3. ** theoretically, it should be optimized. But what the heck...
  4. */
  5.  
  6. void BSet( void * memptr, int bytes, char value){
  7.    register int i;
  8.  
  9.    for(i=0;i< bytes;i++)
  10.        ((char *) memptr)[i] = value;
  11. }
  12.