mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
8 lines
200 B
C
8 lines
200 B
C
/*
|
|
* For a small (usually prime, but not necessarily) prime p,
|
|
* Return Jacobi(p,bn), which is -1, 0 or +1.
|
|
* bn must be odd.
|
|
*/
|
|
struct BigNum;
|
|
int bnJacobiQ(unsigned p, struct BigNum const *bn);
|