aboutsummaryrefslogtreecommitdiff
path: root/tests.h
blob: 339d565c16cf4266b1f11197f4ca34f93e91b81d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TESTS_H_
#define TESTS_H_

#include <stdint.h>

typedef void (*test_fail_cb_t)(
  const int,
  const char * const,
  const uint8_t *,
  const uint8_t *
);

unsigned int run_tests(test_fail_cb_t);

#endif /* TESTS_H_ */