dot 1732 ext/standard/filters.c char *dot; dot 1740 ext/standard/filters.c if ((dot = strchr(filtername, '.')) == NULL) { dot 1743 ext/standard/filters.c ++dot; dot 1747 ext/standard/filters.c if (strcasecmp(dot, "base64-encode") == 0) { dot 1749 ext/standard/filters.c } else if (strcasecmp(dot, "base64-decode") == 0) { dot 1751 ext/standard/filters.c } else if (strcasecmp(dot, "quoted-printable-encode") == 0) { dot 1753 ext/standard/filters.c } else if (strcasecmp(dot, "quoted-printable-decode") == 0) { dot 424 ext/standard/html.c char *dot, *at; dot 429 ext/standard/html.c dot = strchr(localename, '.'); dot 430 ext/standard/html.c if (dot) { dot 431 ext/standard/html.c dot++; dot 433 ext/standard/html.c at = strchr(dot, '@'); dot 435 ext/standard/html.c len = at - dot; dot 437 ext/standard/html.c len = strlen(dot); dot 438 ext/standard/html.c charset_hint = dot;