diff options
author | Angelo Rossi <angelo.rossi.homelab@gmail.com> | 2023-06-21 12:04:16 +0000 |
---|---|---|
committer | Angelo Rossi <angelo.rossi.homelab@gmail.com> | 2023-06-21 12:04:16 +0000 |
commit | b18347ffc9db9641e215995edea1c04c363b2bdf (patch) | |
tree | f3908dc911399f1a21e17d950355ee56dc0919ee /includes/random.hpp |
Initial commit.
Diffstat (limited to 'includes/random.hpp')
-rw-r--r-- | includes/random.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/includes/random.hpp b/includes/random.hpp new file mode 100644 index 0000000..1969082 --- /dev/null +++ b/includes/random.hpp @@ -0,0 +1,26 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file random.hpp + +#ifndef _RANDOM_HPP +#define _RANDOM_HPP + +#include <iostream> +#include <string> + +#include "blkcom.hpp" +#include "dekspy.hpp" + +namespace randomize { + // Variables. + + //Prototypes. + double seedy(std::string *); + double randnm(const double &); + double sandnm(const double &); + +} + +#endif // _RANDOM_HPP + +// end of file random.hpp |