File: bibtexout.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-- 543 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
/*
 * bibtexout.h
 *
 * Copyright (c) Chris Putnam 2005-2009
 *
 */
#ifndef BIBTEXOUT_H
#define BIBTEXOUT_H

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

/* bibtexout output options */
#define BIBOUT_FINALCOMMA (2)
#define BIBOUT_SINGLEDASH (4)
#define BIBOUT_WHITESPACE (8)
#define BIBOUT_BRACKETS  (16)
#define BIBOUT_UPPERCASE (32)
#define BIBOUT_STRICTKEY (64)

extern void bibtexout_write( fields *info, FILE *fp, param *p, 
		unsigned long refnum );
extern void bibtexout_writeheader( FILE *outptr, param *p );


#endif