blob: 1dac3194468e5a7062f145c6c4869fc848d08eb9 (
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
|
#include <assert.h>
#include <stdio.h>
#include "test.h"
#include "unit.h"
void
test_cubic_centimetre(void) {
assert(0);
}
void
test_litre(void) {
assert(0);
}
void
test_cubic_metre(void) {
assert(0);
}
void
test_cubic_inch(void) {
assert(0);
}
void
test_as_cubic_centimetre(void) {
assert(0);
}
void
test_as_litre(void) {
assert(0);
}
void
test_as_cubic_metre(void) {
assert(0);
}
void
test_as_cubic_inch(void) {
assert(0);
}
|