version 1.30.2.1, 2005/01/20 18:03:48
|
version 1.35.2.6, 2009/01/22 00:00:51
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/include/lber_pvt.h,v 1.30 2004/04/27 19:40:54 ando Exp $ */ |
/* $OpenLDAP: pkg/ldap/include/lber_pvt.h,v 1.35.2.5 2008/03/21 00:43:00 hyc Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 1998-2005 The OpenLDAP Foundation. |
* Copyright 1998-2009 The OpenLDAP Foundation. |
* All rights reserved. |
* All rights reserved. |
* |
* |
* Redistribution and use in source and binary forms, with or without |
* Redistribution and use in source and binary forms, with or without |
Line 135 LBER_F( char * )
|
Line 135 LBER_F( char * )
|
ber_strdup_x LDAP_P(( |
ber_strdup_x LDAP_P(( |
LDAP_CONST char *, void *ctx )); |
LDAP_CONST char *, void *ctx )); |
|
|
|
LBER_F( struct berval * ) |
|
ber_bvreplace_x LDAP_P(( |
|
struct berval *dst, LDAP_CONST struct berval *src, void *ctx )); |
|
|
LBER_F( void ) |
LBER_F( void ) |
ber_bvarray_free_x LDAP_P(( BerVarray p, void *ctx )); |
ber_bvarray_free_x LDAP_P(( BerVarray p, void *ctx )); |
|
|
LBER_F( int ) |
LBER_F( int ) |
ber_bvarray_add_x LDAP_P(( BerVarray *p, BerValue *bv, void *ctx )); |
ber_bvarray_add_x LDAP_P(( BerVarray *p, BerValue *bv, void *ctx )); |
|
|
|
LBER_F( int ) |
|
ber_bvarray_dup_x LDAP_P(( BerVarray *dst, BerVarray src, void *ctx )); |
|
|
#if 0 |
#if 0 |
#define ber_bvstrcmp(v1,v2) \ |
#define ber_bvstrcmp(v1,v2) \ |
((v1)->bv_len < (v2)->bv_len \ |
((v1)->bv_len < (v2)->bv_len \ |
Line 163 ber_bvarray_add_x LDAP_P(( BerVarray *p,
|
Line 170 ber_bvarray_add_x LDAP_P(( BerVarray *p,
|
( (s)[0] == (c) && (s)[1] == '\0' ) |
( (s)[0] == (c) && (s)[1] == '\0' ) |
|
|
#define ber_bvchr(bv,c) \ |
#define ber_bvchr(bv,c) \ |
memchr( (bv)->bv_val, (c), (bv)->bv_len ) |
((char *) memchr( (bv)->bv_val, (c), (bv)->bv_len )) |
|
|
|
#define ber_bvrchr(bv,c) \ |
|
((char *) memrchr( (bv)->bv_val, (c), (bv)->bv_len )) |
|
|
|
#define ber_bvchr_post(dst,bv,c) \ |
|
do { \ |
|
(dst)->bv_val = memchr( (bv)->bv_val, (c), (bv)->bv_len ); \ |
|
(dst)->bv_len = (dst)->bv_val ? (bv)->bv_len - ((dst)->bv_val - (bv)->bv_val) : 0; \ |
|
} while (0) |
|
|
|
#define ber_bvchr_pre(dst,bv,c) \ |
|
do { \ |
|
(dst)->bv_val = memchr( (bv)->bv_val, (c), (bv)->bv_len ); \ |
|
(dst)->bv_len = (dst)->bv_val ? ((dst)->bv_val - (bv)->bv_val) : (bv)->bv_len; \ |
|
(dst)->bv_val = (bv)->bv_val; \ |
|
} while (0) |
|
|
|
#define ber_bvrchr_post(dst,bv,c) \ |
|
do { \ |
|
(dst)->bv_val = memrchr( (bv)->bv_val, (c), (bv)->bv_len ); \ |
|
(dst)->bv_len = (dst)->bv_val ? (bv)->bv_len - ((dst)->bv_val - (bv)->bv_val) : 0; \ |
|
} while (0) |
|
|
|
#define ber_bvrchr_pre(dst,bv,c) \ |
|
do { \ |
|
(dst)->bv_val = memrchr( (bv)->bv_val, (c), (bv)->bv_len ); \ |
|
(dst)->bv_len = (dst)->bv_val ? ((dst)->bv_val - (bv)->bv_val) : (bv)->bv_len; \ |
|
(dst)->bv_val = (bv)->bv_val; \ |
|
} while (0) |
|
|
#define BER_BVC(s) { STRLENOF(s), (s) } |
#define BER_BVC(s) { STRLENOF(s), (char *)(s) } |
#define BER_BVNULL { 0L, NULL } |
#define BER_BVNULL { 0L, NULL } |
#define BER_BVZERO(bv) \ |
#define BER_BVZERO(bv) \ |
do { \ |
do { \ |