config root man

Current Path : /usr/local/share/examples/check-0.9.6/src/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/share/examples/check-0.9.6/src/money.h

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

Man Man