mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-15 14:36:45 +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 */
|