~ubuntu-branches/ubuntu/saucy/haskell-hs-bibutils/saucy

« back to all changes in this revision

Viewing changes to bibutils/wordout.h

  • Committer: Package Import Robot
  • Author(s): Joachim Breitner
  • Date: 2011-09-26 17:57:15 UTC
  • Revision ID: package-import@ubuntu.com-20110926175715-muzp5giy0rzonss2
Tags: upstream-4.12
ImportĀ upstreamĀ versionĀ 4.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * wordout.h
 
3
 *
 
4
 * Copyright (c) Chris Putnam 2008-2009
 
5
 *
 
6
 * Source code released under the GPL
 
7
 *
 
8
 */
 
9
#ifndef WORDOUT_H
 
10
#define WORDOUT_H
 
11
 
 
12
/* format-specific options */
 
13
#define WORDOUT_DROPKEY (2)
 
14
 
 
15
#include <stdio.h>
 
16
#include "bibl.h"
 
17
#include "bibutils.h"
 
18
 
 
19
extern void wordout_writeheader( FILE *outptr, param *p );
 
20
extern void wordout_writefooter( FILE *outptr );
 
21
extern void wordout_write( fields *info, FILE *outptr, param *p,
 
22
        unsigned long numrefs );
 
23
extern void wordout_initparams( param *p, const char *progname );
 
24
 
 
25
 
 
26
#endif
 
27