|
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 t
Length: 901 (0x385) Types: TextFile Names: »t-conf.c«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/Tools/misc/t-conf.c«
/* t-conf.c: tests the Lib/pp/conf.c variables */ # ifndef lint static char Rcsid[] = "@(#)$Header: /cs/research/pp/hubris/pp-beta/Tools/misc/RCS/t-conf.c,v 5.0 90/09/20 16:26:56 pp Exp Locker: pp $"; # endif /* * $Header: /cs/research/pp/hubris/pp-beta/Tools/misc/RCS/t-conf.c,v 5.0 90/09/20 16:26:56 pp Exp Locker: pp $ * * $Log: t-conf.c,v $ * Revision 5.0 90/09/20 16:26:56 pp * rcsforce : 5.0 public release * */ #include <stdio.h> extern char *pptailor, *cmddfldir, *logdfldir, *quedfldir, *tbldfldir, *niftpquedir, *niftpcpf; main () { sys_init ("testconf"); printf ("tailor = %s\n", pptailor); printf ("cmddfldir = %s\n", cmddfldir); printf ("logdfldir = %s\n", logdfldir); printf ("quedfldir = %s\n", quedfldir); printf ("tbldfldir = %s\n", tbldfldir); printf ("niftpquedir = %s\n", niftpquedir); printf ("niftpcpf = %s\n", niftpcpf); return; }