Home
last modified time | relevance | path

Searched refs:strprefixcmp (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/dma/
H A Dmail.c432 if (strprefixcmp(line, "From ") == 0 || strprefixcmp(line, ">From ") == 0) in readmail()
450 if (strprefixcmp(line, "Date:") == 0) in readmail()
452 else if (strprefixcmp(line, "Message-Id:") == 0) in readmail()
454 else if (strprefixcmp(line, "From:") == 0) in readmail()
456 else if (strprefixcmp(line, "Bcc:") == 0) in readmail()
467 strprefixcmp(line, "To:") == 0 || in readmail()
468 strprefixcmp(line, "Cc:") == 0 || in readmail()
469 strprefixcmp(line, "Bcc:") == 0)) { in readmail()
H A Ddma.h251 int strprefixcmp(const char *, const char *);
H A Dutil.c345 strprefixcmp(const char *str, const char *prefix) in strprefixcmp() function