|
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 d
Length: 601 (0x259) Types: TextFile Names: »def.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« └─⟦2109abc41⟧ └─⟦this⟧ »./X.V10R4/hacks/bee/def.h«
/* * %G% hack (aps) %W% * * Defines for hack. * aps. */ #include <stdio.h> #include <utmp.h> #include <pwd.h> #include <X/Xlib.h> #define NOSTR ((char *) 0) /* Null string pointer */ #define LINESIZE BUFSIZ /* max from stdio.h */ #define YES 1 /* status return */ #define NO 0 /* status return */ #define UTMPNAMSIZ 8 /* utmp, who, login, ls, ... should be fixed */ #define NAMLEN 16 /* utmp unwisely uses 8 as length of name */ #define DELAY(n) { register int N = (n); while (--N > 0); } #define EVER ;; #define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */