mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 09:17:34 +00:00
11 lines
184 B
C
11 lines
184 B
C
#ifndef BNPRINT_H
|
|
#define BNPRINT_H
|
|
|
|
#include <stdio.h>
|
|
struct BigNum;
|
|
|
|
int bnPrint(FILE *f, char const *prefix, struct BigNum const *bn,
|
|
char const *suffix);
|
|
|
|
#endif /* BNPRINT_H */
|