File: copacin.h

package info (click to toggle)
bibutils 4.8-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,512 kB
  • ctags: 1,340
  • sloc: ansic: 72,394; csh: 216; makefile: 117
file content (27 lines) | stat: -rw-r--r-- 626 bytes parent folder | download
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
/*
 * copacin.h
 *
 * Copyright (c) Chris Putnam 2004-2009
 *
 * Program and source code released under the GPL
 *
 */
#ifndef COPACIN_H
#define COPACIN_H

#include "newstr.h"
#include "fields.h"
#include "reftypes.h"
#include "bibutils.h"

extern int copacin_readf( FILE *fp, char *buf, int bufsize, int *bufpos,
		newstr *line, newstr *reference, int *fcharset );
extern int copacin_processf( fields *copacin, char *p, char *filename, 
		long nref );
extern void copacin_convertf( fields *copacin, fields *info, int reftype, param *p, variants *all, int nall );

extern variants copac_all[];
extern int copac_nall;


#endif