13 lines
257 B
C
13 lines
257 B
C
// Copyright 2022 Darwin Schuppan <darwin@nobrain.org>
|
|
// SPDX license identifier: MIT
|
|
|
|
#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
|