summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-28 17:47:26 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-28 17:47:26 +0000
commit1d04334470c96d0ec4602c8fce705fb8f6d5714d (patch)
tree7a4c76c6ae527faf76f40cd773fb2e4efab10821 /include
parentd4a2ef6aade2a01b31e8055807604ff4fd1164c6 (diff)
downloadlibapr-util-1d04334470c96d0ec4602c8fce705fb8f6d5714d.tar.gz
Correctly doc apr_base64_decode_len.
Submitted by: Brian Rectanus <Brian.Rectanus breach.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@589386 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_base64.h5
1 files changed, 3 insertions, 2 deletions
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);