Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
archived/test/unit.h

18 lines
270 B
C

#ifndef _UNIT_H
#define _UNIT_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#define assert_string(a, b) \
assert(strcmp((char*)a, (char*)b) == 0)
void utest_init_RNG();
char* utest_ran_string(size_t size);
#endif /* _UNIT_H */