summaryrefslogtreecommitdiff
path: root/srclib/apr-util/include/apr_base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'srclib/apr-util/include/apr_base64.h')
-rw-r--r--srclib/apr-util/include/apr_base64.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/srclib/apr-util/include/apr_base64.h b/srclib/apr-util/include/apr_base64.h
index d26aeb2d..b4b2b88f 100644
--- a/srclib/apr-util/include/apr_base64.h
+++ b/srclib/apr-util/include/apr_base64.h
@@ -1,9 +1,9 @@
-/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
- * applicable.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
@@ -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);