9 lines
109 B
C
9 lines
109 B
C
|
|
#ifndef __PRIME_H
|
|
#define __PRIME_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int is_prime(uint32_t p);
|
|
|
|
#endif /* __PRIME_H */
|