Files
seer/tests/hellocheck/money.h
Ernie Pasveer d24bba5e3e Test program for libcheck and testing fork/vfork
Does Seer kill all inferiors after a "run/start"???
2023-10-05 16:54:10 -05:00

13 lines
255 B
C

#ifndef MONEY_H
#define MONEY_H
typedef struct Money Money;
Money* create_money (int amount, const char* currenty);
int money_amount (Money* m);
char* money_currency (Money* m);
void money_free (Money* m);
#endif