2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
5 #include <asn_internal.h>
6 #include <asn_SEQUENCE_OF.h>
8 typedef A_SEQUENCE_OF(void) asn_sequence;
11 asn_sequence_del(void *asn_sequence_of_x, int number, int _do_free) {
12 asn_sequence *as = (asn_sequence *)asn_sequence_of_x;
18 if(number < 0 || number >= as->count)
19 return; /* Nothing to delete */
21 if(_do_free && as->free) {
22 ptr = as->array[number];
28 * Shift all elements to the left to hide the gap.
31 for(n = number; n < as->count; n++)
32 as->array[n] = as->array[n+1];
35 * Invoke the third-party function only when the state
36 * of the parent structure is consistent.
38 if(ptr) as->free(ptr);