blob: 96ae1d6f667283ac45efff9ecc0a7afdb2f5ee8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* tests/tests.h
* (c) 2021 Jonas Gunz <himself@jonasgunz.de>
* License: MIT
*/
#pragma once
#include <check.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
TCase* test_dns(void);
TCase* test_tree(void);
TCase* test_zonefile(void);
|