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 - download
Index: ┃ T u

⟦cfe737d13⟧ TextFile

    Length: 683 (0x2ab)
    Types: TextFile
    Names: »undig.h«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/news/misc/undig/undig.h« 

TextFile

#include "stuff.h"

#define TABSTOP		8	/* Size of a tab on the terminal. */

/* List of text lines. */

struct line {
	int indent;
	char *text;
	struct line *next;
};

/* Storage for text blocks. */

struct block {
	int lead;
	long seekaddr; /* Of first non-blank line! */
	struct line *top;
	int class;
};

/* Text block classes. */

#define HEADER		1
#define TEXT		2

/* Global variables. */

extern int lastcmd;
extern char cmdarg[];
extern bool nospace;
extern int left;
extern int startsize;
extern int halfsize;
extern int pagesize;
extern int lines;
extern int cols;
extern FILE *infp;
extern bool messclear;
extern bool pageclear;
extern bool needclear;
extern char *mailer;