s/qmail  3.3.23
Next generation secure email transport
fmt_str.c
Go to the documentation of this file.
1 #include "fmt.h"
2 
3 unsigned int fmt_str(register char *s,register char *t)
4 {
5  register unsigned int len;
6  char ch;
7  len = 0;
8  if (s) { while (ch = t[len]) s[len++] = ch; }
9  else while (t[len]) len++;
10  return len;
11 }
unsigned int fmt_str(register char *s, register char *t)
Definition: fmt_str.c:3
unsigned len
Definition: matchup.c:36