home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / BNLIB / BN00.C < prev    next >
Text File  |  1996-09-22  |  1KB  |  47 lines

  1. /*
  2.  * bn00.c - auto-size-detecting bn??.c file.
  3.  *
  4.  * Written in 1995 by Colin Plumb.
  5.  */
  6.  
  7. #if defined( INC_ALL ) || defined( INC_CHILD )
  8.   #include "bnsize00.h"
  9. #else
  10.   #include "bnlib/bnsize00.h"
  11. #endif /* Compiler-specific includes */
  12.  
  13. #if BNSIZE64
  14.  
  15. /* Include all of the C source file by reference */
  16. #if defined( INC_ALL ) || defined( INC_CHILD )
  17.   #include "bn64.c"
  18.   #include "bninit64.c"
  19. #else
  20.   #include "bnlib/bn64.c"
  21.   #include "bnlib/bninit64.c"
  22. #endif /* Compiler-specific includes */
  23.  
  24. #elif BNSIZE32
  25.  
  26. /* Include all of the C source file by reference */
  27. #if defined( INC_ALL ) || defined( INC_CHILD )
  28.   #include "bn32.c"
  29.   #include "bninit32.c"
  30. #else
  31.   #include "bnlib/bn32.c"
  32.   #include "bnlib/bninit32.c"
  33. #endif /* Compiler-specific includes */
  34.  
  35. #else /* BNSIZE16 */
  36.  
  37. /* Include all of the C source file by reference */
  38. #if defined( INC_ALL ) || defined( INC_CHILD )
  39.   #include "bn16.c"
  40.   #include "bninit16.c"
  41. #else
  42.   #include "bnlib/bn16.c"
  43.   #include "bnlib/bninit16.c"
  44. #endif /* Compiler-specific includes */
  45.  
  46. #endif
  47.