From cvs-return-5449-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Thu Jan 15 09:17:21 2004 Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 68155 invoked from network); 15 Jan 2004 09:17:21 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 15 Jan 2004 09:17:21 -0000 Received: (qmail 1328 invoked by uid 500); 15 Jan 2004 09:16:53 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 1268 invoked by uid 500); 15 Jan 2004 09:16:53 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 1205 invoked from network); 15 Jan 2004 09:16:52 -0000 Date: 15 Jan 2004 09:17:16 -0000 Message-ID: <20040115091716.68000.qmail@minotaur.apache.org> From: jorton@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_strings.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/01/15 01:17:16 Modified: include apr_strings.h Log: Document return values of apr_cpystrn and apr_collapse_spaces. Revision Changes Path 1.35 +3 -1 apr/include/apr_strings.h Index: apr_strings.h =================================================================== RCS file: /home/cvs/apr/include/apr_strings.h,v retrieving revision 1.34 retrieving revision 1.35 diff -b -d -u -r1.34 -r1.35 --- apr_strings.h 5 Mar 2003 21:22:26 -0000 1.34 +++ apr_strings.h 15 Jan 2004 09:17:16 -0000 1.35 @@ -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 @@ -214,6 +214,7 @@ * 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 *
    * We re-implement this function to implement these specific changes:
  @@ -233,6 +234,7 @@
    * @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);