home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / RECIO110.ZIP / RCBGET.C < prev    next >
C/C++ Source or Header  |  1994-03-28  |  1KB  |  33 lines

  1. /*****************************************************************************
  2.    MODULE: rcbget.c
  3.   PURPOSE: defines rcbget series of functions for recio library
  4. COPYRIGHT: (C) 1994 William Pierpoint
  5.  COMPILER: Borland C Version 3.1
  6.        OS: MSDOS Version 6.2
  7.   VERSION: 1.10
  8.   RELEASE: Mar 28, 1994
  9. *****************************************************************************/
  10.  
  11. #include <ctype.h>
  12. #include <errno.h>
  13. #include <float.h>
  14. #include <limits.h>
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18.  
  19. #include "_rcbget.h"
  20.  
  21. #ifdef __BORLANDC__
  22. #pragma warn -ccc
  23. #endif
  24.  
  25. /****************************************************************************/
  26. /* rcbget_fn() - define rcbget functions                                    */
  27. /****************************************************************************/
  28.  
  29. rcbget_fn(   int,  rcbgeti,  0,  long,  strtol, INT_MIN,  INT_MAX)
  30. rcbget_fn(  uint, rcbgetui,  0, ulong, strtoul,       0, UINT_MAX)
  31. rcbget_fn(  long,  rcbgetl, 0L,  long,  strtol, BUILTIN,  BUILTIN)
  32. rcbget_fn( ulong, rcbgetul, 0L, ulong, strtoul, BUILTIN,  BUILTIN)
  33.