Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > ListOfArrays
comparison ListOfArrays.c @ 18:db10d06ca4ad
adding netbeans project directories to repository
| author | Sean Halle <seanhalle@yahoo.com> |
|---|---|
| date | Fri, 14 Feb 2014 07:48:08 -0800 |
| parents | 7731a4d31baa |
| children |
comparison
equal
deleted
inserted
replaced
| 10:7d7ba0712608 | 11:17feab382c34 |
|---|---|
| 1 | 1 |
| 2 #include "ListOfArrays.h" | 2 #include <PR__include/prlistofarrays.h> |
| 3 #include "PR__common_includes/Services_Offered_by_PR/Memory_Handling/vmalloc__wrapper_library.h" | 3 #include <PR__include/prmalloc.h> |
| 4 | 4 |
| 5 ListOfArrays* makeListOfArrays(size_t entry_size, int num_entries_per_block){ | 5 ListOfArrays* makeListOfArrays(size_t entry_size, int num_entries_per_block){ |
| 6 ListOfArrays* newLoA = (ListOfArrays*) PR__malloc(sizeof(ListOfArrays)); | 6 ListOfArrays* newLoA = (ListOfArrays*) PR__malloc(sizeof(ListOfArrays)); |
| 7 newLoA->dim1info = makePrivDynArrayOfSize(&(newLoA->dim1),8); | 7 newLoA->dim1info = makePrivDynArrayOfSize(&(newLoA->dim1),8); |
| 8 | 8 |
