Home
last modified time | relevance | path

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

/freebsd/contrib/dma/
H A Dmail.c437 if (strprefixcmp(line, "From ") == 0 || strprefixcmp(line, ">From ") == 0) in readmail()
455 if (strprefixcmp(line, "Date:") == 0) in readmail()
457 else if (strprefixcmp(line, "Message-Id:") == 0) in readmail()
459 else if (strprefixcmp(line, "From:") == 0) in readmail()
461 else if (strprefixcmp(line, "Bcc:") == 0) in readmail()
472 strprefixcmp(line, "To:") == 0 || in readmail()
473 strprefixcmp(line, "Cc:") == 0 || in readmail()
474 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