s/qmail  3.3.23
Next generation secure email transport
byte_zero.c
Go to the documentation of this file.
1 #include "byte.h"
2 
3 void byte_zero(char *s,register unsigned int n)
4 {
5  for (;;) {
6  if (!n) break; *s++ = 0; --n;
7  if (!n) break; *s++ = 0; --n;
8  if (!n) break; *s++ = 0; --n;
9  if (!n) break; *s++ = 0; --n;
10  }
11 }
unsigned n
Definition: matchup.c:36
void byte_zero(char *s, register unsigned int n)
Definition: byte_zero.c:3