home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
c
/
cnews016.arc
/
SETS.ARC
/
SETSOURC.ARC
/
SETCLEAR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1989-03-09
|
487b
|
19 lines
#include <stdio.h>
#include <stdarg.h>
#include "sets.h"
/***************************************************************************/
void set_clear(set *aset)
/***************************************************************************/
/* This function clears all members in a set. */
{
int i;
for(i=0;i<aset->member_recs;i++)
aset->word[i] = 0;
/* correct the member count in the set record */
aset->nmembers = 0;
} /* end set_clear */