// 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