From 582542e39f1930c854c73d53744a8d4e369a7cf9 Mon Sep 17 00:00:00 2001 From: gonzo Date: Fri, 19 May 2023 10:31:51 +0200 Subject: initial commit, contract struct + bullet loan --- loans.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 loans.h (limited to 'loans.h') diff --git a/loans.h b/loans.h new file mode 100644 index 0000000..8d99de7 --- /dev/null +++ b/loans.h @@ -0,0 +1,8 @@ +#pragma once +#include +#include "contract.h" + +/**** BULLET LOAN ****/ +contract *bullet_init(int n, int d, float r, float P); +float bullet_update(contract *); +void bullet_free(contract *c); -- cgit v1.2.3