stb.c 320 B

123456789101112131415
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. /* library routine for copying structs */
  7. __stb(n, f, t)
  8. register char *f, *t; register n;
  9. {
  10. if (n > 0)
  11. do
  12. *t++ = *f++;
  13. while (--n);
  14. }