Return-Path: X-Original-To: apmail-apr-commits-archive@www.apache.org Delivered-To: apmail-apr-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2F44111734 for ; Tue, 24 Jun 2014 15:05:48 +0000 (UTC) Received: (qmail 10121 invoked by uid 500); 24 Jun 2014 15:05:48 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 10066 invoked by uid 500); 24 Jun 2014 15:05:48 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 10056 invoked by uid 99); 24 Jun 2014 15:05:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jun 2014 15:05:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jun 2014 15:05:46 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C19ED238897A; Tue, 24 Jun 2014 15:05:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1605104 - /apr/apr/trunk/include/apr_skiplist.h Date: Tue, 24 Jun 2014 15:05:26 -0000 To: commits@apr.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140624150526.C19ED238897A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Tue Jun 24 15:05:26 2014 New Revision: 1605104 URL: http://svn.apache.org/r1605104 Log: missing proto Modified: apr/apr/trunk/include/apr_skiplist.h Modified: apr/apr/trunk/include/apr_skiplist.h URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_skiplist.h?rev=1605104&r1=1605103&r2=1605104&view=diff ============================================================================== --- apr/apr/trunk/include/apr_skiplist.h (original) +++ apr/apr/trunk/include/apr_skiplist.h Tue Jun 24 15:05:26 2014 @@ -180,6 +180,15 @@ APR_DECLARE(apr_skiplistnode *) apr_skip void *data, apr_skiplist_compare comp); /** + * Add an element into the skip list using the specified comparison function. + * @param sl The skip list + * @param data The element to add + * @param comp The comparison function to use for placement into the skip list + */ +APR_DECLARE(apr_skiplistnode *) apr_skiplist_add_compare(apr_skiplist *sl, + void *data, apr_skiplist_compare comp); + +/** * Add an element into the skip list using the existing comparison function. * @param sl The skip list * @param data The element to insert