home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- MODULE: rbput.c
- PURPOSE: recio character 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 "_rbput.h"
-
- /****************************************************************************/
- /* rbput_fn() - define rbput functions */
- /****************************************************************************/
- #define uint unsigned int
- #define ulong unsigned long
-
- rbput_fn( int, rbputi, int, itoa)
- rbput_fn( uint, rbputui, ulong, ultoa)
- rbput_fn( long, rbputl, long, ltoa)
- rbput_fn( ulong, rbputul, ulong, ultoa)
-