Oops.  I forgot to include a critical function in my previous question --
though you might have guessed from the name what it does:

void MemCopy (CharPtr dst, const CharPtr src, Word nbytes)
{
   Word i;

   for (i=0; i<nbytes; i++)
   {
      dst[i] = src[i];
   }
}

----------------------
Michael Hutchens
[EMAIL PROTECTED]


Reply via email to