summaryrefslogtreecommitdiffstats
path: root/loans.h
diff options
context:
space:
mode:
Diffstat (limited to 'loans.h')
-rw-r--r--loans.h8
1 files changed, 8 insertions, 0 deletions
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 <stdlib.h>
+#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);