comparison DynArray.h @ 15:53c5d022dd45

added eol handling and .brch__VMS_malloc_brch to indicate brch (and reason for it)
author Me@portablequad
date Sat, 11 Feb 2012 17:46:39 -0800
parents 1cffeb870564
children
comparison
equal deleted inserted replaced
6:b309936d1429 8:3fc518160665
7 7
8 #ifndef _DYNARRAY_H 8 #ifndef _DYNARRAY_H
9 #define _DYNARRAY_H 9 #define _DYNARRAY_H
10 10
11 #include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h" 11 #include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h"
12 #include "../../VMS_Implementations/VMS_impl/vmalloc.h"
12 13
13 14
14 //A dynamic array is same as any other array, but add a DynArrayInfo next 15 //A dynamic array is same as any other array, but add a DynArrayInfo next
15 // to it. Accesses and updates of array indexes are done normally, it's 16 // to it. Accesses and updates of array indexes are done normally, it's
16 // only when add a new element into array that use the extra info. 17 // only when add a new element into array that use the extra info.