#ifndef MONEY_H
#define MONEY_H

typedef struct Money Money;

Money *money_create (int amount, char *currency);
int money_amount (Money * m);
char *money_currency (Money * m);
void money_free (Money * m);

#endif /* MONEY_H */


syntax highlighted by Code2HTML, v. 0.9.1