#include "defs.h" /* * * S. R. Bourne * Bell Telephone Laboratories * */ /* ======== general purpose string handling ======== */ STRING movstr(a,b) REG STRING a, b; { WHILE *b++ = *a++ DONE return(--b); } STRING cpystr(a,b) REG STRING a, b; { WHILE *b++ = *a++ DONE return(b); }