diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2022-05-11 02:17:51 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2022-05-11 02:17:51 +0300 |
commit | 3515199c9e158d4b6fe5d064539bdf288dca7b81 (patch) | |
tree | 7c4ac203010c03fefb4d736871b3b3f0a2db3f98 /tests/types.c | |
parent | 16538abf8d1231279133508ba15376145b818518 (diff) | |
download | foodtools-3515199c9e158d4b6fe5d064539bdf288dca7b81.tar.gz foodtools-3515199c9e158d4b6fe5d064539bdf288dca7b81.tar.bz2 foodtools-3515199c9e158d4b6fe5d064539bdf288dca7b81.zip |
initial library includes
Diffstat (limited to 'tests/types.c')
-rw-r--r-- | tests/types.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/types.c b/tests/types.c index 9f08ac8..30498fe 100644 --- a/tests/types.c +++ b/tests/types.c @@ -1,6 +1,8 @@ /* -*- eval: (outline-minor-mode); outline-regexp: "START_TEST("; -*- */ -static check_empty_recipe(recipe * r) { +static int +check_empty_recipe(recipe * r) +{ ck_assert_int_eq(r->n, 1); ck_assert_int_eq(r->in, 0); ck_assert_int_eq(r->sn, 0); |