Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 230 Bytes

byte_zero.c

File metadata and controls

13 lines (12 loc) · 230 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "byte.h"
void byte_zero(s,n)
char *s;
register unsigned int n;
{
for (;;) {
if (!n) break; *s++ = 0; --n;
if (!n) break; *s++ = 0; --n;
if (!n) break; *s++ = 0; --n;
if (!n) break; *s++ = 0; --n;
}
}