Author: bojan
Date: Tue Jun 9 00:28:06 2009
New Revision: 782841
URL: http://svn.apache.org/viewvc?rev=782841&view=rev
Log:
Backport r782838 from the trunk.
Fix documentation for apr_collapse_spaces().
PR 47322.
Modified:
apr/apr/branches/1.3.x/ (props changed)
apr/apr/branches/1.3.x/include/apr_strings.h
Propchange: apr/apr/branches/1.3.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Jun 9 00:28:06 2009
@@ -1 +1 @@
-/apr/apr/trunk:712674,733052,742752
+/apr/apr/trunk:712674,733052,742752,782838
Modified: apr/apr/branches/1.3.x/include/apr_strings.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/include/apr_strings.h?rev=782841&r1=782840&r2=782841&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/include/apr_strings.h (original)
+++ apr/apr/branches/1.3.x/include/apr_strings.h Tue Jun 9 00:28:06 2009
@@ -196,11 +196,11 @@
apr_size_t dst_size);
/**
- * Strip spaces from a string
+ * Remove all whitespace from a string
* @param dest The destination string. It is okay to modify the string
* in place. Namely dest == src
* @param src The string to rid the spaces from.
- * @return The destination string, dest.
+ * @return A pointer to the destination string's null terminator.
*/
APR_DECLARE(char *) apr_collapse_spaces(char *dest, const char *src);
|