Style changes to primes
This commit is contained in:
parent
373792c113
commit
72811cbcd3
2
primes.h
2
primes.h
|
@ -1,3 +1,5 @@
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
bool isPrime(long n);
|
bool isPrime(long n);
|
||||||
bool isPrimeMem(long n, long* primes);
|
bool isPrimeMem(long n, long* primes);
|
||||||
long listOfPrimes(long n, long** primes_ptr, bool** primesTable_ptr);
|
long listOfPrimes(long n, long** primes_ptr, bool** primesTable_ptr);
|
||||||
|
|
Loading…
Reference in New Issue