Home
last modified time | relevance | path

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

/NextBSD/contrib/apr-util/encoding/
HDapr_base64.c110 APU_DECLARE(int) apr_base64_decode_len(const char *bufcoded) in apr_base64_decode_len() argument
116 bufin = (const unsigned char *) bufcoded; in apr_base64_decode_len()
119 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in apr_base64_decode_len()
125 APU_DECLARE(int) apr_base64_decode(char *bufplain, const char *bufcoded) in apr_base64_decode() argument
132 len = apr_base64_decode_binary((unsigned char *) bufplain, bufcoded); in apr_base64_decode()
146 const char *bufcoded) in apr_base64_decode_binary() argument
153 bufin = (const unsigned char *) bufcoded; in apr_base64_decode_binary()
155 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in apr_base64_decode_binary()
159 bufin = (const unsigned char *) bufcoded; in apr_base64_decode_binary()