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 r

⟦610a173f8⟧ TextFile

    Length: 743 (0x2e7)
    Types: TextFile
    Names: »rd_dr.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/Lib/io/rd_dr.c« 

TextFile

/* rd_dr.c: read a DR file from q/msg/dir/dr.999 into a DR struct */
/* see man page QUEUE (5) */

# ifndef lint
static char Rcsid[] = "@(#)$Header: /cs/research/pp/hubris/pp-beta/Lib/io/RCS/rd_dr.c,v 5.0 90/09/20 16:06:46 pp Exp Locker: pp $";
# endif

/*
 * $Header: /cs/research/pp/hubris/pp-beta/Lib/io/RCS/rd_dr.c,v 5.0 90/09/20 16:06:46 pp Exp Locker: pp $
 *
 * $Log:	rd_dr.c,v $
 * Revision 5.0  90/09/20  16:06:46  pp
 * rcsforce : 5.0 public release
 * 
 */



#include "head.h"
#include "dr.h"




/* ---------------------  Begin  Routines  -------------------------------- */

int rd_dr (dp, fp)
register DRmpdu         *dp;
FILE                    *fp;
{

	PP_DBG (("Lib/io/rd_dr()"));
	dr_init (dp);
	return (txt2dr (dp, fp));
}