gfrom.c (174B)
1 #include "gfrom.h" 2 3 #include "str.h" 4 5 int gfrom(s,len) 6 char *s; 7 int len; 8 { 9 while ((len > 0) && (*s == '>')) { ++s; --len; } 10 return (len >= 5) && !str_diffn(s,"From ",5); 11 }
nightmaremailUnnamed repository; edit this file 'description' to name the repository. | |
Log | Files | Refs |