home *** CD-ROM | disk | FTP | other *** search
- /*
-
- Routines for retrieving global variables from Clipper - Summer '87
-
- R. Whitt - 5/28/88
-
- */
-
-
- #include "nandef.h"
- #include "extend.h"
-
-
-
- /* Numeric Values */
-
-
- extern int _decimals;
- extern int _margin;
-
-
- CLIPPER getdecim()
- {
- _retni( _decimals );
- }
-
- CLIPPER getmarg()
- {
- _retni( _margin );
- }