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

⟦47dc2e27b⟧ TextFile

    Length: 622 (0x26e)
    Types: TextFile
    Names: »rdn_print.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/dsap/common/rdn_print.c« 

TextFile

#include "quipu/util.h"
#include "quipu/name.h"

rdn_comp_print (ps,rdn,format)
PS   ps;
RDN  rdn;
int  format;
{

	if (rdn!=NULLRDN) {
		AttrT_print (ps,&rdn->rdn_at,format);
		ps_print (ps,"=");
		AttrV_print (ps,&rdn->rdn_av,format);
	}
	return;
}

rdn_print (ps,rdn,format)
RDN  rdn;
PS   ps;
int  format;
{
register RDN eptr;

	if (rdn ==  NULLRDN) {
		if (format == READOUT)
			ps_print  (ps,"NULL RDN");
		return;
	}

	rdn_comp_print (ps,rdn,format);

	if (rdn->rdn_next != NULLRDN)
		for (eptr=rdn->rdn_next; eptr!=NULLRDN; eptr=eptr->rdn_next) {
			ps_print (ps,"%"); 
			rdn_comp_print (ps,eptr,format);
		}

}