make vec test split into .h and .c files

This commit is contained in:
r4
2022-05-29 21:53:25 +02:00
parent 368dde5c89
commit 0d999f5b39
4 changed files with 16 additions and 6 deletions

9
tests/generic/vec.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __TESTS_VEC_H__
#define __TESTS_VEC_H__
#define GENERIC_TYPE int
#define GENERIC_NAME IntVec
#define GENERIC_PREFIX int_vec
#include <ds/generic/vec.h>
#endif