ack/modules/src/string/strzero.c

10 lines
61 B
C
Raw Normal View History

1987-01-06 11:41:50 +00:00
/* strzero()
*/
char *
strzero(s)
char *s;
{
*s = '\0';
}