|
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: 366 (0x16e) Types: TextFile Names: »avs_new.c«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« └─⟦de7628f85⟧ └─⟦this⟧ »isode-6.0/dsap/common/avs_new.c«
#include "quipu/util.h" #include "quipu/attrvalue.h" avs_comp_fill (ptr,pe) AV_Sequence ptr; AttributeValue pe; { ptr->avseq_av.av_struct = pe->av_struct; ptr->avseq_av.av_syntax = pe->av_syntax; } AV_Sequence avs_comp_new (pe) AttributeValue pe; { AV_Sequence ptr; ptr = avs_comp_alloc (); avs_comp_fill (ptr,pe); ptr->avseq_next = NULLAV; return (ptr); }