|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T u
Length: 683 (0x2ab) Types: TextFile Names: »undig.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec1/news/misc/undig/undig.h«
#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;