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 u

⟦dfeb8399d⟧ TextFile

    Length: 865 (0x361)
    Types: TextFile
    Names: »ut_prm.c«

Derivation

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

TextFile

/* ut_prm.c: MessageManagementParameter utilities */

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

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



#include        "util.h"
#include        "prm.h"




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




void prm_init (pp)
struct prm_vars         *pp;
{
	PP_DBG (("Lib/pp/ut_prm.c/prm_init()"));
	bzero ((char *) pp, sizeof (*pp));
}


void prm_free (pp)
struct prm_vars         *pp;
{
	PP_DBG (("Lib/pp/ut_prm.c/prm_free()"));

	if (pp->prm_logfile != NULLCP)  free (pp->prm_logfile);
	prm_init (pp);
}