UDIF: Universal Digital Identification Framework 1.0.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 <stdlib.h>
8#include <stdio.h>
9#include <string.h>
10#include "consoleutils.h"
11
16#if defined(_DEBUG)
17# include <assert.h>
18# define UDIF_TEST_ASSERT(x) assert(x)
19#else
20# define UDIF_TEST_ASSERT(x)
21#endif
22
23#endif