DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T t

⟦326580039⟧ TextFile

    Length: 861 (0x35d)
    Types: TextFile
    Names: »t-rd_rfchdr.c«

Derivation

└─⟦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« 

TextFile

/* 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]);
}