|
|
1.1 root 1: #include "quipu/util.h"
2: #include "quipu/attrvalue.h"
3:
4: extern LLog * log_dsap;
5:
6: avs_delnext (avs)
7: AV_Sequence avs;
8: {
9: AV_Sequence ptr;
10: if (avs == NULLAV)
11: DLOG (log_dsap,LLOG_DEBUG,("delnext of null avs!"));
12: else {
13: ptr = avs->avseq_next;
14: if (ptr == NULLAV)
15: DLOG (log_dsap,LLOG_DEBUG,("no new avs to delete!"));
16: else {
17: avs->avseq_next = ptr->avseq_next;
18: avs_comp_free (ptr);
19: }
20: }
21: }
22:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.