]> granicus.if.org Git - postgresql/blob - src/include/utils/cash.h
Add in D'Arcy's cash code
[postgresql] / src / include / utils / cash.h
1 /*
2 cash.h
3 Written by D'Arcy J.M. Cain
4
5 functions to allow input and output of money normally but store
6 and handle it as long integers
7 */
8
9 #ifndef         _CASH_H
10 #define         _CASH_H
11
12 const char      *cash_out(long value);
13 long            cash_in(const char *str);
14 const char      *cash_words_out(long value);
15
16 #endif          /* _CASH_H */