]> git.sur5r.net Git - openldap/commitdiff
Add additional BER_BV macros
authorKurt Zeilenga <kurt@openldap.org>
Wed, 7 Apr 2004 01:31:40 +0000 (01:31 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 7 Apr 2004 01:31:40 +0000 (01:31 +0000)
include/lber_pvt.h

index 695d9dfb5dd527c257289c88a020fcd210f9e0f7..e66f25533b37d326d77d5ca5ccad6ab1a3433b97 100644 (file)
@@ -165,9 +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_BVC(x)     { sizeof(x) - 1, (x) }
 #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 { \
+               (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)
+
 LDAP_END_DECL
 
 #endif