view src/lib/primes.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents e399e33d033d
children 81806d402514
line wrap: on
line source

#ifndef PRIMES_H
#define PRIMES_H

/* Returns a prime close to specified number, or the number itself if it's
   a prime. Note that the returned value may be smaller than requested! */
unsigned int primes_closest(unsigned int num);

#endif