1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/*
* wordin.h
*
* Copyright (c) Chris Putnam 2009
*
* Program and source code released under the GPL
*
*/
#ifndef WORDIN_H
#define WORDIN_H
#include "newstr.h"
#include "fields.h"
#include "reftypes.h"
extern int wordin_readf( FILE *fp, char *buf, int bufsize, int *bufpos, newstr *line, newstr *reference, int *fcharset );
extern int wordin_processf( fields *wordin, char *data, char *filename, long nref );
extern void wordin_convertf( fields *wordin, fields *info, int reftype, int verbose, variants *all, int nall );
/*
extern variants med_all[];
extern int med_nall;
*/
#endif
|