File: wordout.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 (25 lines) | stat: -rw-r--r-- 471 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
/*
 * wordout.h
 *
 * Copyright (c) Chris Putnam 2008-2009
 *
 * Source code released under the GPL
 *
 */
#ifndef WORDOUT_H
#define WORDOUT_H

/* format-specific options */
#define WORDOUT_DROPKEY (2)

#include <stdio.h>
#include "bibl.h"
#include "bibutils.h"

extern void wordout_writeheader( FILE *outptr, param *p );
extern void wordout_writefooter( FILE *outptr );
extern void wordout_write( fields *info, FILE *outptr, param *p,
	unsigned long numrefs );

#endif