Paul Zinselmeyer
25a5ca3e2d
- Add Assignment-7 to flake.nix - Implement basic framework of app - Implement proxy subcommand (mostly) - Implement basics of intermediary subcommand
15 lines
346 B
C
15 lines
346 B
C
#ifndef CRYPTO_MINI_TEST_H
|
|
#define CRYPTO_MINI_TEST_H
|
|
#include <stdbool.h>
|
|
|
|
void start_tests(char *group_name);
|
|
|
|
void end_tests();
|
|
|
|
void run_test(const char *tests_name, bool (*test_fn)(void));
|
|
|
|
bool assert_true(bool condition, const char *message, ...);
|
|
|
|
bool assert_false(bool condition, const char *message, ...);
|
|
|
|
#endif //CRYPTO_MINI_TEST_H
|