]> git.sur5r.net Git - openldap/blobdiff - include/ldif.h
Fix build_result_ber to construct a new ber and to set ld_errno appropriately.
[openldap] / include / ldif.h
index dd2b339193ec723426f90939b17008dd723ae97c..ee0fac490312a63058b832602b1c3fafd357e7e9 100644 (file)
@@ -1,4 +1,13 @@
 /*
+ * Copyright 1998,1999 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.
+ */
+/* Portions
  * Copyright (c) 1996 Regents of the University of Michigan.
  * All rights reserved.
  *
 #ifndef _LDIF_H
 #define _LDIF_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+#include <ldap_cdefs.h>
 
-#define LINE_WIDTH      76      /* maximum length of LDIF lines */
+LDAP_BEGIN_DECL
+
+extern int ldif_debug;
+
+#define LDIF_LINE_WIDTH      76      /* maximum length of LDIF lines */
 
 /*
  * Macro to calculate maximum number of bytes that the base64 equivalent
@@ -34,23 +45,30 @@ extern "C" {
  */
 #define LDIF_SIZE_NEEDED(tlen,vlen) \
     ((tlen) + 4 + LDIF_BASE64_LEN(vlen) \
-    + ((LDIF_BASE64_LEN(vlen) + tlen + 3) / LINE_WIDTH * 2 ))
-
-
-#ifdef NEEDPROTOS
-int str_parse_line( char *line, char **type, char **value, int *vlen);
-char * str_getline( char **next );
-void put_type_and_value( char **out, char *t, char *val, int vlen );
-char *ldif_type_and_value( char *type, char *val, int vlen );
-#else /* NEEDPROTOS */
-int str_parse_line();
-char * str_getline();
-void put_type_and_value();
-char *ldif_type_and_value();
-#endif /* NEEDPROTOS */
-
-#ifdef __cplusplus
-}
-#endif
+    + ((LDIF_BASE64_LEN(vlen) + (tlen) + 3) / LDIF_LINE_WIDTH * 2 ))
+
+LDAP_F( int )
+ldif_parse_line LDAP_P((
+       LDAP_CONST char *line,
+       char **type, char **value, int *vlen));
+
+LDAP_F( char * )
+ldif_getline LDAP_P(( char **next ));
+
+LDAP_F( void )
+ldif_put_type_and_value LDAP_P((
+       char **out,
+       LDAP_CONST char *t,
+       LDAP_CONST char *val,
+       int vlen ));
+
+LDAP_F( char * )
+ldif_type_and_value LDAP_P((
+       LDAP_CONST char *type,
+       LDAP_CONST char *val,
+       int vlen ));
+
+
+LDAP_END_DECL
 
 #endif /* _LDIF_H */