home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- MODULE: rcputf.c
- PURPOSE: recio column delimited floating point output functions
- COPYRIGHT: (C) 1994 William Pierpoint
- COMPILER: Borland C Version 3.1
- OS: MSDOS Version 6.2
- VERSION: 2.00
- RELEASE: April 15, 1994
- *****************************************************************************/
-
- #include <errno.h>
- #include <float.h>
- #include <limits.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-
- #include "_rcputf.h"
-
- extern char *dtoa(double d, int dig, char *str);
-
- /****************************************************************************/
- /* rcput_fn() - define column delimited floating point put functions */
- /****************************************************************************/
-
- rcput_fn(float, rcputf, double, dtoa, FLT_DIG)
- rcput_fn(double, rcputd, double, dtoa, DBL_DIG)
-