/*
*
* Portions Copyright 1998 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Copyright (c) 1990 Regents of the University of Michigan.
* All rights reserved.
*
*/
#ifndef lint
static char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
#endif
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h> /* free() for Solaris */
#ifdef MACOS
#include <stdlib.h>
#include "macos.h"
#else /* MACOS */
#include <malloc.h>
#include "msdos.h"
#else /* DOS */
#endif /* DOS */
#endif /* MACOS */
#include "lber.h"
#include "ldap.h"
#include "ldap-private.h"
#include "ldap-int.h"
char **
{
int found = 0;
int len;
char **vals;
/* skip sequence, dn, sequence of, and snag the first attr */
return( NULL );
}
found = 1;
/* break out on success, return out on error */
while ( ! found ) {
return( NULL );
}
break;
}
/*
* if we get this far, we've found the attribute and are sitting
* just before the set of values.
*/
return( NULL );
}
return( vals );
}
struct berval **
{
int found = 0;
int len;
/* skip sequence, dn, sequence of, and snag the first attr */
return( NULL );
}
found = 1;
/* break out on success, return out on error */
while ( ! found ) {
return( NULL );
}
break;
}
/*
* if we get this far, we've found the attribute and are sitting
* just before the set of values.
*/
return( NULL );
}
return( vals );
}
int
{
int i;
return( 0 );
; /* NULL */
return( i );
}
int
{
return( ldap_count_values( (char **) vals ) );
}
void
{
int i;
return;
}
void
{
int i;
return;
}
}