Projects/1BIT/summer-semester/IJC-1/primes.h
2026-04-14 19:28:46 +02:00

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