UDIF: Universal Digital Identification Framework 1.1.0.0a (A1)
A quantum-secure cryptographic identification
udiftestcommon.h
1#ifndef UDIF_TEST_COMMON_H
2#define UDIF_TEST_COMMON_H
3
4#include <assert.h>
5#include <stdbool.h>
6#include <stdint.h>
7#include <stdio.h>
8#include <string.h>
9#include "consoleutils.h"
10
15#if defined(_DEBUG)
16# include <assert.h>
17# define UDIF_TEST_ASSERT(x) assert(x)
18#else
19# define UDIF_TEST_ASSERT(x)
20#endif
21
22#endif