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