Skip to content

Commit

Permalink
Document return values of apr_cpystrn and apr_collapse_spaces.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64872 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
notroj committed Jan 15, 2004
1 parent 7b603f8 commit f9e2b14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/apr_strings.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2003 The Apache Software Foundation. All rights
* Copyright (c) 2000-2004 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -214,6 +214,7 @@ APR_DECLARE_NONSTD(char *) apr_psprintf(apr_pool_t *p, const char *fmt, ...)
* null-termination, so if src is longer than
* dst_size, the actual number of characters copied is
* dst_size - 1.
* @return The destination string, dst
* @remark
* <PRE>
* We re-implement this function to implement these specific changes:
Expand All @@ -233,6 +234,7 @@ APR_DECLARE(char *) apr_cpystrn(char *dst, const char *src,
* @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.
*/
APR_DECLARE(char *) apr_collapse_spaces(char *dest, const char *src);

Expand Down

0 comments on commit f9e2b14

Please sign in to comment.