Xyris
0.5
primes.hpp
Go to the documentation of this file.
1
/**
2
* @file primes.hpp
3
* @author Micah Switzer (
[email protected]
)
4
* @brief Prime computation tasks
5
* @version 0.1
6
* @date 2020-12-30
7
*
8
* @copyright Copyright the Xyris Contributors (c) 2021
9
*
10
*/
11
#pragma once
12
13
namespace
Apps
{
14
15
/**
16
* @brief Starts a task to find prime numbers.
17
*
18
*/
19
void
find_primes
(
void
);
20
/**
21
* @brief Starts a task to display number of primes
22
* found by find_primes.
23
*
24
*/
25
void
show_primes
(
void
);
26
27
}
Apps
Definition:
animation.cpp:14
Apps::show_primes
void show_primes(void)
Starts a task to display number of primes found by find_primes.
Definition:
primes.cpp:37
Apps::find_primes
void find_primes(void)
Starts a task to find prime numbers.
Definition:
primes.cpp:27
Kernel
Applications
primes.hpp
Generated by
1.8.17