home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / BNLIB / BNPRINT.H < prev    next >
C/C++ Source or Header  |  1996-05-16  |  253b  |  19 lines

  1. #ifndef BNPRINT_H
  2. #define BNPRINT_H
  3.  
  4. #include <stdio.h>
  5. struct BigNum;
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. int bnPrint(FILE *f, char const *prefix, struct BigNum const *bn,
  12.     char const *suffix);
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17.  
  18. #endif /* BNPRINT_H */
  19.