1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/*
* bibtexin.h
*
* Copyright (c) Chris Putnam 2003-2009
*
* Program and source code released under the GPL
*
*/
#ifndef BIBTEXIN_H
#define BIBTEXIN_H
#include "newstr.h"
#include "list.h"
#include "fields.h"
#include "bibl.h"
#include "bibutils.h"
#include "reftypes.h"
extern void bibtexin_convertf( fields *bibin, fields *info, int reftype, param *p, variants *all, int nall );
extern int bibtexin_processf( fields *bibin, char *data, char *filename, long nref );
extern void bibtexin_cleanf( bibl *bin, param *p );
extern int bibtexin_readf( FILE *fp, char *buf, int bufsize, int *bufpos, newstr *line, newstr *reference, int *fcharset );
extern int bibtexin_typef( fields *bibin, char *filename, int nrefs,
param *p, variants *all, int nall );
extern variants bibtex_all[];
extern int bibtex_nall;
#endif
|