/usr/include/bibutils/modsout.h is in libbibutils-dev 4.12-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* modsout.h
*
* Copyright (c) Chris Putnam 2003-2009
*
* Source code released under the GPL
*
*/
#ifndef MODSOUT_H
#define MODSOUT_H
/* format-specific options */
#define MODSOUT_DROPKEY (2)
#include <stdio.h>
#include <stdlib.h>
#include "bibl.h"
#include "bibutils.h"
extern void modsout_writeheader( FILE *outptr, param *p );
extern void modsout_writefooter( FILE *outptr );
extern void modsout_write( fields *info, FILE *outptr,
param *p, unsigned long numrefs );
extern void modsout_initparams( param *p, const char *progname );
#endif
|