Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 38491 invoked by uid 500); 5 Jul 2000 01:10:26 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 38464 invoked by uid 500); 5 Jul 2000 01:10:25 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 5 Jul 2000 01:10:24 -0000 Message-ID: <20000705011024.38459.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/lib/apr/include apr_strnatcmp.h rbb 00/07/04 18:10:24 Modified: src/lib/apr/include apr_strnatcmp.h Log: Document the strnatcmp functions. Revision Changes Path 1.4 +29 -0 apache-2.0/src/lib/apr/include/apr_strnatcmp.h Index: apr_strnatcmp.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_strnatcmp.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- apr_strnatcmp.h 2000/04/25 22:33:44 1.3 +++ apr_strnatcmp.h 2000/07/05 01:10:23 1.4 @@ -27,7 +27,36 @@ extern "C" { #endif /* __cplusplus */ +/* + +=head1 int ap_strnatcmp(char const *a, char const *b) + +B + + arg 1) The first string to compare + arg 2) The second string to compare + return) Either <0, 0, or >0. If the first string is less than the second + this returns <0, if they are equivalent it returns 0, and if the + first string is greater than second string it retuns >0. + +=cut + */ int ap_strnatcmp(char const *a, char const *b); + +/* + +=head1 int ap_strnatcmp(char const *a, char const *b) + +B + + arg 1) The first string to compare + arg 2) The second string to compare + return) Either <0, 0, or >0. If the first string is less than the second + this returns <0, if they are equivalent it returns 0, and if the + first string is greater than second string it retuns >0. + +=cut + */ int ap_strnatcasecmp(char const *a, char const *b); #ifdef __cplusplus