mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
aa17fdd0bd
Implementation no longer uses strtok_r(), it may be broken or have an odd prototype. Update configure not to check for strtok/strtok_r nor require strtok_r to LDAP_API_FEATURE_X_OPENLDAP_REENTRANT.
145 lines
2.0 KiB
C
145 lines
2.0 KiB
C
/* charray.c - routines for dealing with char * arrays */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
|
|
void
|
|
charray_add(
|
|
char ***a,
|
|
char *s
|
|
)
|
|
{
|
|
int n;
|
|
|
|
if ( *a == NULL ) {
|
|
*a = (char **) ch_malloc( 2 * sizeof(char *) );
|
|
n = 0;
|
|
} else {
|
|
for ( n = 0; *a != NULL && (*a)[n] != NULL; n++ ) {
|
|
; /* NULL */
|
|
}
|
|
|
|
*a = (char **) ch_realloc( (char *) *a,
|
|
(n + 2) * sizeof(char *) );
|
|
}
|
|
|
|
(*a)[n++] = ch_strdup(s);
|
|
(*a)[n] = NULL;
|
|
}
|
|
|
|
void
|
|
charray_merge(
|
|
char ***a,
|
|
char **s
|
|
)
|
|
{
|
|
int i, n, nn;
|
|
|
|
for ( n = 0; *a != NULL && (*a)[n] != NULL; n++ ) {
|
|
; /* NULL */
|
|
}
|
|
for ( nn = 0; s[nn] != NULL; nn++ ) {
|
|
; /* NULL */
|
|
}
|
|
|
|
*a = (char **) ch_realloc( (char *) *a, (n + nn + 1) * sizeof(char *) );
|
|
|
|
for ( i = 0; i < nn; i++ ) {
|
|
(*a)[n + i] = ch_strdup(s[i]);
|
|
}
|
|
(*a)[n + nn] = NULL;
|
|
}
|
|
|
|
void
|
|
charray_free( char **array )
|
|
{
|
|
char **a;
|
|
|
|
if ( array == NULL ) {
|
|
return;
|
|
}
|
|
|
|
for ( a = array; *a != NULL; a++ ) {
|
|
if ( *a != NULL ) {
|
|
free( *a );
|
|
}
|
|
}
|
|
free( (char *) array );
|
|
}
|
|
|
|
int
|
|
charray_inlist(
|
|
char **a,
|
|
char *s
|
|
)
|
|
{
|
|
int i;
|
|
|
|
for ( i = 0; a[i] != NULL; i++ ) {
|
|
if ( strcasecmp( s, a[i] ) == 0 ) {
|
|
return( 1 );
|
|
}
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
char **
|
|
charray_dup( char **a )
|
|
{
|
|
int i;
|
|
char **new;
|
|
|
|
for ( i = 0; a[i] != NULL; i++ )
|
|
; /* NULL */
|
|
|
|
new = (char **) ch_malloc( (i + 1) * sizeof(char *) );
|
|
|
|
for ( i = 0; a[i] != NULL; i++ ) {
|
|
new[i] = ch_strdup( a[i] );
|
|
}
|
|
new[i] = NULL;
|
|
|
|
return( new );
|
|
}
|
|
|
|
char **
|
|
str2charray( char *str, char *brkstr )
|
|
{
|
|
char **res;
|
|
char *s;
|
|
char *lasts;
|
|
int i;
|
|
|
|
/* protect the input string from strtok */
|
|
str = ch_strdup( str );
|
|
|
|
i = 1;
|
|
for ( s = str; *s; s++ ) {
|
|
if ( strchr( brkstr, *s ) != NULL ) {
|
|
i++;
|
|
}
|
|
}
|
|
|
|
res = (char **) ch_malloc( (i + 1) * sizeof(char *) );
|
|
i = 0;
|
|
|
|
for ( s = ldap_pvt_strtok( str, brkstr, &lasts );
|
|
s != NULL;
|
|
s = ldap_pvt_strtok( NULL, brkstr, &lasts ) )
|
|
{
|
|
res[i++] = ch_strdup( s );
|
|
}
|
|
|
|
res[i] = NULL;
|
|
|
|
free( str );
|
|
return( res );
|
|
}
|