Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 7b0651d8a23a5a77ff8f5fd073fe8e19 > files > 31

lib64check-devel-0.9.10-2.mga4.x86_64.rpm

#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 */