ack/modules/src/string/strzero.c
1991-10-16 11:41:33 +00:00

15 lines
251 B
C

/* $Header$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* strzero()
*/
char *
strzero(s)
char *s;
{
*s = '\0';
return s;
}