Skip to content

Commit ddf6aa4

Browse files
author
Ivan Zhakov
committed
Remove trailing whitespaces.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1905407 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8f3d73a commit ddf6aa4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+816
-816
lines changed

include/apr_allocator.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern "C" {
3333

3434
/**
3535
* @defgroup apr_allocator Internal Memory Allocation
36-
* @ingroup APR
36+
* @ingroup APR
3737
* @{
3838
*/
3939

@@ -47,7 +47,7 @@ typedef struct apr_memnode_t apr_memnode_t;
4747
* caller of apr_allocator_alloc(), the remaining fields are read-only.
4848
* The next field has to be used with caution and sensibly set when the
4949
* memnode is passed back to apr_allocator_free(). See apr_allocator_free()
50-
* for details.
50+
* for details.
5151
* The ref and first_avail fields will be properly restored by
5252
* apr_allocator_free().
5353
*/
@@ -103,7 +103,7 @@ APR_DECLARE(apr_memnode_t *) apr_allocator_alloc(apr_allocator_t *allocator,
103103
APR_DECLARE(void) apr_allocator_free(apr_allocator_t *allocator,
104104
apr_memnode_t *memnode)
105105
__attribute__((nonnull(1,2)));
106-
106+
107107
/**
108108
* Get the page/boundary size.
109109
* @return The page size

include/apr_atomic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131

3232
/**
3333
* @defgroup apr_atomic Atomic Operations
34-
* @ingroup APR
34+
* @ingroup APR
3535
* @{
3636
*/
3737

include/apr_base64.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ extern "C" {
3838
*/
3939

4040
/* Simple BASE64 encode/decode functions.
41-
*
41+
*
4242
* As we might encode binary strings, hence we require the length of
4343
* the incoming plain source. And return the length of what we decoded.
4444
*
4545
* The decoding function takes any non valid char (i.e. whitespace, \0
4646
* or anything non A-Z,0-9 etc) as terminal.
47-
*
47+
*
4848
* The handling of terminating \0 characters differs from function to
4949
* function.
5050
*
@@ -56,7 +56,7 @@ extern "C" {
5656
* @param len the length of an unencoded string.
5757
* @return the length of the string after it is encoded, including the
5858
* trailing \0
59-
*/
59+
*/
6060
APR_DECLARE(int) apr_base64_encode_len(int len) __attribute__((pure));
6161

6262
/**
@@ -67,8 +67,8 @@ APR_DECLARE(int) apr_base64_encode_len(int len) __attribute__((pure));
6767
* @param plain_src The original string in plain text
6868
* @param len_plain_src The length of the plain text string
6969
* @return the length of the encoded string, including the trailing \0
70-
*/
71-
APR_DECLARE(int) apr_base64_encode(char * coded_dst, const char *plain_src,
70+
*/
71+
APR_DECLARE(int) apr_base64_encode(char * coded_dst, const char *plain_src,
7272
int len_plain_src)
7373
__attribute__((nonnull(1,2)));
7474

@@ -81,7 +81,7 @@ APR_DECLARE(int) apr_base64_encode(char * coded_dst, const char *plain_src,
8181
* @param plain_src The original string in plain text
8282
* @param len_plain_src The length of the plain text string
8383
* @return the length of the encoded string, including the trailing \0
84-
*/
84+
*/
8585
APR_DECLARE(int) apr_base64_encode_binary(char * coded_dst,
8686
const unsigned char *plain_src,
8787
int len_plain_src)
@@ -101,7 +101,7 @@ APR_DECLARE(char *) apr_pbase64_encode(apr_pool_t *p, const char *string)
101101
* string given the encoded string.
102102
* @param coded_src The encoded string
103103
* @return the maximum required buffer length for the plain text string
104-
*/
104+
*/
105105
APR_DECLARE(int) apr_base64_decode_len(const char * coded_src)
106106
__attribute__((nonnull(1))) __attribute__((pure));
107107

@@ -110,9 +110,9 @@ APR_DECLARE(int) apr_base64_decode_len(const char * coded_src)
110110
* converted to EBCDIC.
111111
* @param plain_dst The destination string for the plain text. A \0 is
112112
* appended.
113-
* @param coded_src The encoded string
113+
* @param coded_src The encoded string
114114
* @return the length of the plain text string (excluding the trailing \0)
115-
*/
115+
*/
116116
APR_DECLARE(int) apr_base64_decode(char * plain_dst, const char *coded_src)
117117
__attribute__((nonnull(1,2)));
118118

@@ -122,10 +122,10 @@ APR_DECLARE(int) apr_base64_decode(char * plain_dst, const char *coded_src)
122122
* output to EBCDIC is left out.
123123
* @param plain_dst The destination string for the plain text. The string is
124124
* not \0-terminated.
125-
* @param coded_src The encoded string
125+
* @param coded_src The encoded string
126126
* @return the length of the plain text string
127-
*/
128-
APR_DECLARE(int) apr_base64_decode_binary(unsigned char * plain_dst,
127+
*/
128+
APR_DECLARE(int) apr_base64_decode_binary(unsigned char * plain_dst,
129129
const char *coded_src)
130130
__attribute__((nonnull(1,2)));
131131

0 commit comments

Comments
 (0)