]> git.sur5r.net Git - openldap/blobdiff - include/ldif.h
Extended ber_mem functions, add context argument.
[openldap] / include / ldif.h
index de4531625ecbacd9efd6358222ec7a9bcae4c062..799bfd1b0bb3d77c5924217166ebc06aac1a0d67 100644 (file)
@@ -1,12 +1,13 @@
 /* $OpenLDAP$ */
 /*
- * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
+ * Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted only
- * as authorized by the OpenLDAP Public License.  A copy of this
- * license is available at http://www.OpenLDAP.org/license.html or
- * in file LICENSE in the top-level directory of the distribution.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.  A copy of this license is available at
+ * http://www.OpenLDAP.org/license.html or in file LICENSE in the
+ * top-level directory of the distribution.
  */
 /* Portions
  * Copyright (c) 1996 Regents of the University of Michigan.
@@ -28,7 +29,7 @@
 LDAP_BEGIN_DECL
 
 /* This is NOT a bogus extern declaration (unlike ldap_debug) */
-LIBLDIF_F (int) ldif_debug;
+LDAP_LDIF_V (int) ldif_debug;
 
 #define LDIF_LINE_WIDTH      76      /* maximum length of LDIF lines */
 
@@ -49,23 +50,23 @@ LIBLDIF_F (int) ldif_debug;
     ((nlen) + 4 + LDIF_BASE64_LEN(vlen) \
     + ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / LDIF_LINE_WIDTH * 2 ))
 
-LIBLDIF_F( int )
+LDAP_LDIF_F( int )
 ldif_parse_line LDAP_P((
        LDAP_CONST char *line,
        char **name,
        char **value,
        ber_len_t *vlen ));
 
-LIBLDIF_F( int )
+LDAP_LDIF_F( int )
 ldif_fetch_url LDAP_P((
        LDAP_CONST char *line,
        char **value,
        ber_len_t *vlen ));
 
-LIBLDIF_F( char * )
+LDAP_LDIF_F( char * )
 ldif_getline LDAP_P(( char **next ));
 
-LIBLDIF_F( int )
+LDAP_LDIF_F( int )
 ldif_read_record LDAP_P((
        FILE *fp,
        int *lineno,
@@ -83,7 +84,7 @@ ldif_read_record LDAP_P((
 #define LDIF_PUT_URL           0x0020  /* url */
 #define LDIF_PUT_SEP           0x0040  /* separator */
 
-LIBLDIF_F( void )
+LDAP_LDIF_F( void )
 ldif_sput LDAP_P((
        char **out,
        int type,
@@ -91,14 +92,14 @@ ldif_sput LDAP_P((
        LDAP_CONST char *val,
        ber_len_t vlen ));
 
-LIBLDIF_F( char * )
+LDAP_LDIF_F( char * )
 ldif_put LDAP_P((
        int type,
        LDAP_CONST char *name,
        LDAP_CONST char *val,
        ber_len_t vlen ));
 
-LIBLDIF_F( int )
+LDAP_LDIF_F( int )
 ldif_is_not_printable LDAP_P((
        LDAP_CONST char *val,
        ber_len_t vlen ));