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

⟦15452931a⟧ TextFile

    Length: 823 (0x337)
    Types: TextFile
    Names: »ut_misc.c«

Derivation

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

TextFile

/* ut_misc.c - Other miscellaneous routines */ 

# ifndef lint
static char Rcsid[] = "@(#)$Header: /cs/research/pp/hubris/pp-beta/Chans/x40084/RCS/ut_misc.c,v 5.0 90/09/20 15:56:21 pp Exp Locker: pp $";
# endif

/*
 * $Header: /cs/research/pp/hubris/pp-beta/Chans/x40084/RCS/ut_misc.c,v 5.0 90/09/20 15:56:21 pp Exp Locker: pp $
 *
 * $Log:	ut_misc.c,v $
 * Revision 5.0  90/09/20  15:56:21  pp
 * rcsforce : 5.0 public release
 * 
 */



#include "util.h"
#include "q.h"




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



void reverse_trace (trace)
Trace  **trace; 
{
	Trace	*tp = *trace;
	Trace	*bp = (Trace *)0;
	Trace	*np = (Trace *)0;

	
	for (;;) {
		if (tp == (Trace *)0)
			break;
		bp = tp;
		tp = tp -> trace_next;
		bp -> trace_next = np;
		np = bp;
	}
			
	*trace = np;
}