aboutsummaryrefslogtreecommitdiffstats
path: root/test_pressure.c
blob: a64bac9fc9a7e823ae8ebda3c5eb9c3bfe217329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <assert.h>
#include <stdio.h>

#include "test.h"

void
test_pascal(void) {
	assert(0);
}

void
test_millibar(void) {
	assert(0);
}

void
test_kilopascal(void) {
	assert(0);
}

void
test_bar(void) {
	assert(0);
}

void
test_psi(void) {
	assert(0);
}

void
test_as_pascal(void) {
	assert(0);
}

void
test_as_millibar(void) {
	assert(0);
}

void
test_as_kilopascal(void) {
	assert(0);
}

void
test_as_bar(void) {
	assert(0);
}

void
test_as_psi(void) {

}