s/qmail 4.2.29a
Next generation secure email transport
Loading...
Searching...
No Matches
gfrom.c
Go to the documentation of this file.
1#include "str.h"
2#include "gfrom.h"
3
4int gfrom(char *s,int len)
5{
6 while ((len > 0) && (*s == '>')) { ++s; --len; }
7 return (len >= 5) && !str_diffn(s,"From ",5);
8}
int gfrom(char *s, int len)
Definition: gfrom.c:4