blob: 02655c88747c2eed7eb512ec7740524c2dd2e224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
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_out(long value);
long cash_in(const char *str);
const char *cash_words_out(long value);
#endif /* _CASH_H */
|