blob: 8d99de772eb5c8e919a57870ea7446a109d9f532 (
plain)
1
2
3
4
5
6
7
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);
|