|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 318 (0x13e) Types: TextFile Names: »dn_append.c«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« └─⟦de7628f85⟧ └─⟦this⟧ »isode-6.0/dsap/common/dn_append.c«
#include "quipu/util.h" #include "quipu/name.h" extern LLog * log_dsap; dn_append (a,b) DN a,b; { register DN ptr; register DN eptr; if (a == NULLDN) DLOG (log_dsap,LLOG_DEBUG,("appending to null dn!")); else { for (eptr = a; eptr != NULLDN; eptr = eptr->dn_parent) ptr = eptr; ptr->dn_parent = b; } }