/* 7thWdEnd.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 *seventhWD (char *to, char *from) { while (*from!='\0') *to++ = *from++; *to = '\0'; return (from); }