|
|
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: 861 (0x35d)
Types: TextFile
Names: »t-rd_rfchdr.c«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
└─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z«
└─⟦e5a54fb17⟧
└─⟦this⟧ »pp-5.0/Src/submit/t-rd_rfchdr.c«
/* t-rd_rfchdr.c: small wrap around to test parseing of rfc hdrs in submit */
# ifndef lint
static char Rcsid[] = "@(#)$Header: /cs/research/pp/hubris/pp-beta/Src/submit/RCS/t-rd_rfchdr.c,v 5.0 90/09/20 16:23:33 pp Exp Locker: pp $";
# endif
/*
* $Header: /cs/research/pp/hubris/pp-beta/Src/submit/RCS/t-rd_rfchdr.c,v 5.0 90/09/20 16:23:33 pp Exp Locker: pp $
*
* $Log: t-rd_rfchdr.c,v $
* Revision 5.0 90/09/20 16:23:33 pp
* rcsforce : 5.0 public release
*
*/
#include "head.h"
#include "q.h"
Q_struct Qstruct;
CHAN *ch_inbound;
main (argc, argv)
int argc;
char **argv;
{
if (argc < 3) {
printf ("usage : %s channel filename", argv[0]);
exit(0);
}
sys_init(argv[0]);
or_myinit();
if ((ch_inbound = ch_nm2struct(argv[1])) == NULL) {
printf ("Unknown channel '%s'", argv[1]);
exit(0);
}
q_init(&Qstruct);
rd_rfchdr(argv[2]);
}