home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- MODULE: rcbput.c
- PURPOSE: recio column delimited integral number 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 <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-
- #include "_rcbput.h"
-
- /****************************************************************************/
- /* rcbput_fn() - define rcbput functions */
- /****************************************************************************/
- #define uint unsigned int
- #define ulong unsigned long
-
- rcbput_fn( int, rcbputi, int, itoa)
- rcbput_fn( uint, rcbputui, ulong, ultoa)
- rcbput_fn( long, rcbputl, long, ltoa )
- rcbput_fn( ulong, rcbputul, ulong, ultoa)
-