view c/bitVector/bitInfo.h @ 100:804e51f19f17 impl-bitvector

implement allocateBitVectorList
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 17 Nov 2015 03:17:07 +0900
parents 3d1c71fbd4a4
children
line wrap: on
line source

typedef struct bitInfo {
    int arrayNum;
    unsigned long *bitContainer;
}BitInfo,*BitInfoPtr;