DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T b

⟦dcb06c95c⟧ TextFile

    Length: 895 (0x37f)
    Types: TextFile
    Names: »bib.h«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/bibtex/bib.h« 

TextFile

/*
 * Main include file for BibTeX in C.
 *
 * Tim Morgan  2/15/88
 * Eduardo Krell 4/21/88
 */

#include <stdio.h>
#include <setjmp.h>
#include "site.h"

#undef	STAT
#undef	DEBUG

extern char *strncpy();

typedef FILE *file_ptr;
typedef FILE *palphafile;
#define	incr(x)	++(x)
#define	decr(x)	--(x)
extern int ztestaccess();
#define	testaccess(a,b)	ztestaccess((int)(a),(int)(b))
#define	true	1
#define	false	0
#define	rewrite(f,n)	f=openf(n,"w")
#define	reset(f,n)	f=openf(n,"r")
#define	aclose(f)	if (f) (void) fclose(f)
#define	chr(x)		(x)
extern void lineread(), setpaths();
#define readln(f)	{register c; while ((c=getc(f))!='\n' && c!=EOF); }
extern FILE *openf();
#define	uexit(x)	exit((int) (x))
#define	eof(f)		feof(f)
#define	Fputs(stream, s)	(void) fputs(s, stream)
#define printstr(s,c)	fprintf(logfile,"%s%c",s,c);fprintf(stdout,"%s%c",s,c)

extern char **gargv;
extern int gargc;