/* WDsFinish.c */
/* Recycle Object */
/* This takes any length, since the ending part of 'inline'. Actually in
* Classic Mac OS with MWP 3.5, the length is fixed (different from PC).
*/
#include <ctype.h>
extern char *WDsFinish (char *to, char *from)
{
while ( *from != '\0') *to++ = *from++;
*to = '\0';
return (from);
}