sandbox-c/prime/primes.h

8 lines
221 B
C

/*We can use CPP tricks to avoid parsing the same header file more than once*/
#ifndef PQ_CON_INFO_H
# define PQ_CON_INFO_H
int isPrime(int n); // returns 0 if n is not prime, 1 if n is prime
#endif /* PQ_CON_INFO_H */