/* ColFinPt.c */
/* Recyclable Object - this is Dr. Aota's 'firstwd()'. */
/* This will take any length, since the last word in 'inline'. */
#include <ctype.h>
extern char *ColFinPt (char *to, char *from)
{
while (*from!='\0') *to++ = *from++;
*to = '\0';
return (from);
}