comparison DynArray.h @ 24:3e8e1a2a10f5

changed comments, to avoid repeats during global replace
author Some Random Person <seanhalle@yahoo.com>
date Fri, 09 Mar 2012 22:18:27 -0800
parents 62b3a4793b6e
children 7adf81960d10
comparison
equal deleted inserted replaced
9:a36337bc2886 11:c1817b7c1082
6 */ 6 */
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_impl/VMS_primitive_data_types.h"
12 #include "../../VMS_Implementations/VMS_impl/vmalloc.h" 12 #include "VMS_impl/vmalloc.h"
13 13
14 14
15 //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
16 // 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
17 // 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.