/* WDsErase.c */
/* Recycle Object */
#include <ctype.h>
/* Magic No is = 7 */
extern char *WDsErase (char *to, char *from)
{
int i;
i=0;
while ( isspace(*from) || isalnum(*from) || '.' || '-' || '\'' || '\:' ) {
*to++ = *from++ ; i++;
if(i==7){break;}
}return(from);
}