Pristine Ack-5.5
[Ack-5.5.git] / modules / src / string / strzero.c
1 /* $Id: strzero.c,v 1.6 1994/06/24 11:23:20 ceriel Exp $ */
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
9 #include "ack_string.h"
10
11 char *
12 strzero(s)
13         char *s;
14 {
15         *s = '\0';
16         return s;
17 }