Lines Matching defs:clen
889 UNITTEST int dedotdotify(const char *input, size_t clen, char **outp);
890 UNITTEST int dedotdotify(const char *input, size_t clen, char **outp)
893 const char *endp = &input[clen];
898 if((clen < 2) || !memchr(input, '.', clen))
901 out = malloc(clen + 1);
916 clen -= 2;
920 clen -= 3;
939 clen -= 2;
954 clen -= 3;
988 clen--;