strzero.c 272 B

1234567891011121314151617
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /* strzero()
  7. */
  8. #include "ack_string.h"
  9. char *
  10. strzero(s)
  11. char *s;
  12. {
  13. *s = '\0';
  14. return s;
  15. }