/*
 * Author:      Pierangelo Masarati
 * E-mail:      masarati@aero.polimi.it
 * Date:        August, 1999
 * Version:     1.0
 * Description:
 *              LDAP client to build a BibTeX database out of
 *              a Directory Server, with migration tools.
 *
 * Redistribution and use in source and binary forms are permitted
 * provided that the above copyright notice and this paragraph are
 * duplicated in all such forms and that any documentation,
 * advertising materials, and other materials related to such
 * distribution and use acknowledge that the software was developed
 * by Pierangelo Masarati.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 */

#ifndef BIBTEX2LDIF_H
#define BIBTEX2LDIF_H

/* from bibtex2ldif.c */
extern char *base;		/* LDAP base for the BibTeX entries */
extern char *bibtex_oc;		/* BibTeX objectClass */
extern char *dn_form;		/* form to printf the dn of the entries */

extern FILE *fd_out;

/* from yacc/bison */
int yyparse(void);
int yyerror(char *);
extern int yylineno;

/* from lex/flex */
extern FILE *yyin;

#endif /* BIBTEX2LDIF_H */


