1N/A#pragma ident "%Z%%M% %I% %E% SMI"
1N/A
1N/A/*
1N/A * The contents of this file are subject to the Netscape Public
1N/A * License Version 1.1 (the "License"); you may not use this file
1N/A * except in compliance with the License. You may obtain a copy of
1N/A * the License at http://www.mozilla.org/NPL/
1N/A *
1N/A * Software distributed under the License is distributed on an "AS
1N/A * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
1N/A * implied. See the License for the specific language governing
1N/A * rights and limitations under the License.
1N/A *
1N/A * The Original Code is Mozilla Communicator client code, released
1N/A * March 31, 1998.
1N/A *
1N/A * The Initial Developer of the Original Code is Netscape
1N/A * Communications Corporation. Portions created by Netscape are
1N/A * Copyright (C) 1998-1999 Netscape Communications Corporation. All
1N/A * Rights Reserved.
1N/A *
1N/A * Contributor(s):
1N/A */
1N/A/*
1N/A * Copyright (c) 1990 Regents of the University of Michigan.
1N/A * All rights reserved.
1N/A */
1N/A/*
1N/A * countvalues.c
1N/A */
1N/A
1N/A#include "ldap-int.h"
1N/A
1N/Aint
1N/ALDAP_CALL
1N/Aldap_count_values( char **vals )
1N/A{
1N/A int i;
1N/A
1N/A if ( vals == NULL )
1N/A return( 0 );
1N/A
1N/A for ( i = 0; vals[i] != NULL; i++ )
1N/A ; /* NULL */
1N/A
1N/A return( i );
1N/A}
1N/A
1N/Aint
1N/ALDAP_CALL
1N/Aldap_count_values_len( struct berval **vals )
1N/A{
1N/A return( ldap_count_values( (char **) vals ) );
1N/A}