From: Julio Sánchez Fernández Date: Sun, 13 Jun 1999 23:31:35 +0000 (+0000) Subject: New ldap_syntax_free, ldap_attributetype_free and ldap_objectclass_free X-Git-Tag: OPENLDAP_REL_ENG_2_BP~329 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5e0f62e45453abdb74af80c28274af88f777f735;p=openldap New ldap_syntax_free, ldap_attributetype_free and ldap_objectclass_free that replace old static routines. --- diff --git a/include/ldap_schema.h b/include/ldap_schema.h index b24cb594fc..3068ce0fd9 100644 --- a/include/ldap_schema.h +++ b/include/ldap_schema.h @@ -78,6 +78,9 @@ typedef struct ldap_objectclass { #define LDAP_SCHEMA_STRUCTURAL 1 #define LDAP_SCHEMA_AUXILIARY 2 +LDAP_F(void) ldap_syntax_free LDAP_P(( LDAP_SYNTAX * syn )); +LDAP_F(void) ldap_attributetype_free LDAP_P(( LDAP_ATTRIBUTE_TYPE * at )); +LDAP_F(void) ldap_objectclass_free LDAP_P(( LDAP_OBJECT_CLASS * oc )); LDAP_F(LDAP_OBJECT_CLASS *) ldap_str2objectclass LDAP_P(( char * s, int * code, char ** errp )); LDAP_F(LDAP_ATTRIBUTE_TYPE *) ldap_str2attributetype LDAP_P(( char * s, int * code, char ** errp )); LDAP_F(LDAP_SYNTAX *) ldap_str2syntax LDAP_P(( char * s, int * code, char ** errp ));