10 lines
129 B
C
10 lines
129 B
C
/* vim:filetype=c
|
|
*/
|
|
#ifndef BLACK_SCHOLES_H_
|
|
#define BLACK_SCHOLES_H_
|
|
|
|
struct Option;
|
|
void bsm(struct Option *option);
|
|
|
|
#endif
|