s/qmail  3.3.23
Next generation secure email transport
str_cpy.c
Go to the documentation of this file.
1 #include "str.h"
2 
3 unsigned int str_copy(register char *s,register char *t)
4 {
5  register int len;
6 
7  len = 0;
8  for (;;) {
9  if (!(*s = *t)) return len; ++s; ++t; ++len;
10  if (!(*s = *t)) return len; ++s; ++t; ++len;
11  if (!(*s = *t)) return len; ++s; ++t; ++len;
12  if (!(*s = *t)) return len; ++s; ++t; ++len;
13  }
14 }
unsigned len
Definition: matchup.c:36
unsigned int str_copy(register char *s, register char *t)
Definition: str_cpy.c:3