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

⟦015f611b7⟧ TextFile

    Length: 434 (0x1b2)
    Types: TextFile
    Names: »rdn_new.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_new.c« 

TextFile

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

rdn_comp_fill (ptr,at,av)
RDN ptr;
AttributeType  at;
AttributeValue av;
{
	if (at)
		AttrT_cpy_aux (at,&ptr->rdn_at);
	if (av)
		AttrV_cpy_aux (av,&ptr->rdn_av);
}

RDN  rdn_comp_new (at,av)
AttributeType  at;
AttributeValue av;
{
register RDN ptr;
	ptr = rdn_comp_alloc ();
	bzero ((char *)ptr, sizeof (*ptr));
	rdn_comp_fill (ptr,at,av);
	ptr->rdn_next = NULLRDN;
	return (ptr);
}