13 lines
212 B
C
13 lines
212 B
C
// primes.h
|
|
// Řešení IJC-DU1, příklad a), 22.3.2024
|
|
// Autor: Roman Nečas, FIT
|
|
// Přeloženo: gcc 13.2.1
|
|
|
|
#ifndef PRIMES_H
|
|
#define PRIMES_H
|
|
|
|
#include "bitset.h"
|
|
|
|
void Eratosthenes(bitset_t name);
|
|
|
|
#endif
|