/* shiftedLine.c */

/* Recycle Object */



#include <ctype.h>



extern char *shiftedLine (char *to, char *from)

{

   while ( *from != '\0') *to++ = *from++;

   *to = '\0';

   return(from);

}