From 1d04334470c96d0ec4602c8fce705fb8f6d5714d Mon Sep 17 00:00:00 2001 From: wrowe Date: Sun, 28 Oct 2007 17:47:26 +0000 Subject: Correctly doc apr_base64_decode_len. Submitted by: Brian Rectanus git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@589386 13f79535-47bb-0310-9956-ffa450edef68 --- include/apr_base64.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/apr_base64.h b/include/apr_base64.h index 634d131d..b4b2b88f 100644 --- a/include/apr_base64.h +++ b/include/apr_base64.h @@ -80,9 +80,10 @@ APU_DECLARE(int) apr_base64_encode_binary(char * coded_dst, int len_plain_src); /** - * Determine the length of a plain text string given the encoded version + * Determine the maximum buffer length required to decode the plain text + * string given the encoded string. * @param coded_src The encoded string - * @return the length of the plain text string + * @return the maximum required buffer length for the plain text string */ APU_DECLARE(int) apr_base64_decode_len(const char * coded_src); -- cgit v1.2.1