1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-31 10:42:17 +00:00
2012-03-31 18:37:58 +00:00

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);