2
0

bnprint.h 313 B

1234567891011121314
  1. /*
  2. * Copyright (c) 1995 Colin Plumb. All rights reserved.
  3. * For licensing and other legal details, see the file legal.c.
  4. */
  5. #ifndef BNPRINT_H
  6. #define BNPRINT_H
  7. #include <stdio.h>
  8. struct BigNum;
  9. int bnPrint(FILE *f, char const *prefix, struct BigNum const *bn,
  10. char const *suffix);
  11. #endif /* BNPRINT_H */