mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
cleanup
This commit is contained in:
parent
9b52459b53
commit
0a8ba6620e
@ -165,19 +165,20 @@ ber_bvarray_add_x LDAP_P(( BerVarray *p, BerValue *bv, void *ctx ));
|
||||
#define ber_bvchr(bv,c) \
|
||||
memchr( (bv)->bv_val, (c), (bv)->bv_len )
|
||||
|
||||
#define BER_BVC(x) { sizeof(x) - 1, (x) }
|
||||
#define BER_BVNULL { 0L, NULL }
|
||||
|
||||
#define BER_BVZERO(bv) do { \
|
||||
#define BER_BVC(s) { sizeof(s) - 1, (s) }
|
||||
#define BER_BVNULL { 0L, NULL }
|
||||
#define BER_BVZERO(bv) \
|
||||
do { \
|
||||
(bv)->bv_len = 0; \
|
||||
(bv)->bv_val = NULL; \
|
||||
} while (0)
|
||||
#define BER_BVSTR(bv,s) do { \
|
||||
#define BER_BVSTR(bv,s) \
|
||||
do { \
|
||||
(bv)->bv_len = sizeof(s)-1; \
|
||||
(bv)->bv_val = (s); \
|
||||
} while (0)
|
||||
#define BER_BVISNULL(bv) ((bv)->bv_val == NULL)
|
||||
#define BER_BVISEMPTY(bv) ((bv)->bv_len == 0)
|
||||
#define BER_BVISNULL(bv) ((bv)->bv_val == NULL)
|
||||
#define BER_BVISEMPTY(bv) ((bv)->bv_len == 0)
|
||||
|
||||
LDAP_END_DECL
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user