comparison DynArray.c @ 13:1cffeb870564

include statements adapted to the new folder structure
author hausers
date Thu, 09 Feb 2012 15:47:41 +0100
parents bc91986481e1
children 53c5d022dd45
comparison
equal deleted inserted replaced
7:4ea97d23e2ce 8:f7b171eaa7f1
7 7
8 8
9 #include <stdio.h> 9 #include <stdio.h>
10 10
11 #include "DynArray.h" 11 #include "DynArray.h"
12 12 #include "../vmalloc.h"
13 13
14 //== declarations
15 void
16 increaseSizeOfDynArrayTo_Ext( PrivDynArrayInfo *info, int32 newSize );
17 //==
14 18
15 PrivDynArrayInfo * 19 PrivDynArrayInfo *
16 makePrivDynArrayInfoFrom( void ***addrOfPtrToArray, int32 sizeOfArray ) 20 makePrivDynArrayInfoFrom( void ***addrOfPtrToArray, int32 sizeOfArray )
17 { PrivDynArrayInfo *info; 21 { PrivDynArrayInfo *info;
18 22