Revision c29e97b234e98cc022346b3f10beb5db55a60fda authored by Alexander Kruppa on 20 February 2014, 16:46:06 UTC, committed by Alexander Kruppa on 20 February 2014, 16:46:06 UTC
2 parent s b298cc1 + c5c9057
Raw File
getprime.h
#ifndef CADO_UTILS_GETPRIME_H_
#define CADO_UTILS_GETPRIME_H_

#ifdef __cplusplus
extern "C" {
#endif

/* This function returns successive odd primes, starting with 3. */
extern unsigned long getprime (unsigned long);

#ifdef __cplusplus
}
#endif

#endif	/* CADO_UTILS_GETPRIME_H_ */
back to top