ack/modules/src/string/strzero.c
1987-01-06 11:41:50 +00:00

9 lines
61 B
C

/* strzero()
*/
char *
strzero(s)
char *s;
{
*s = '\0';
}