Moved bit code to separate files

This commit is contained in:
Andrew Kane
2024-03-25 17:10:01 -07:00
parent d9ca850faf
commit 8b819dfdc2
7 changed files with 92 additions and 78 deletions

8
src/bitvector.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef BITVECTOR_H
#define BITVECTOR_H
#include "utils/varbit.h"
VarBit *InitBitVector(int dim);
#endif