|
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 m
Length: 769 (0x301) Types: TextFile Names: »msdos.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/stat-5.3/eu/stat/src/msdos.h«
/* Copyright 1986 Gary Perlman */ #ifndef MSDOS_H #define MSDOS_H #ifndef SMALL_MEM #define SMALL_MEM 1 #endif #define MAX_WIDTH 80 /* plot at most this wide */ #define MAX_HEIGHT 60 /* plot at most this high */ #define PGM(name,purpose,ver,date) char *Argv0 = "name"; \ int _stack = 32000; \ static char CpRt[] = "@(#) Copyright 1980 Gary Perlman All Rights Reserved";\ static char *Purpose = "purpose";\ static char *Version = "Program: name Version: ver Date: date"; #define FUN(name,purpose,ver,date) extern char *Argv0; #define ARGV0 argv[0] = Argv0 /* MSDOS does not set argv[0] properly */ #define index(s,c) strchr(s,c) /* usual sort of name portability problem */ #ifndef VOID #define VOID void #endif VOID #endif MSDOS_H