/*
cash.h
Written by D'Arcy J.M. Cain

functions to allow input and output of money normally but store
and handle it as long integers
*/

#ifndef		_CASH_H
#define		_CASH_H

const char	*cash(long value, int parens, int points, int comma);
const char	*cash_words(long value);
long		atocash(const char *str, int fpoint);

#endif		/* _CASH_H */

