6 lines
62 B
C
6 lines
62 B
C
|
bzero(b, l)
|
||
|
register char *b;
|
||
|
{
|
||
|
while (l-- > 0) *b++ = 0;
|
||
|
}
|