File: wordout.h

package info (click to toggle)
referencer 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,028 kB
  • ctags: 2,265
  • sloc: ansic: 32,973; cpp: 12,149; python: 1,314; xml: 1,258; sh: 1,154; makefile: 252
file content (26 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (6)
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
/*
 * wordout.h
 *
 * Copyright (c) Chris Putnam 2007
 *
 * Source code released under the GPL
 *
 */
#ifndef WORDOUT_H
#define WORDOUT_H

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

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

extern void wordout_writeheader( FILE *outptr, int unicode );
extern void wordout_writefooter( FILE *outptr );
extern void wordout_write( fields *info, FILE *outptr,
	int format_opts, unsigned long numrefs );

#endif