mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
13 lines
255 B
C
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
|
||
|
|
|