├── .clang-format ├── .gitignore ├── Makefile ├── README.md ├── rng.h └── test.cc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademakov/RNG/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademakov/RNG/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademakov/RNG/HEAD/README.md -------------------------------------------------------------------------------- /rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademakov/RNG/HEAD/rng.h -------------------------------------------------------------------------------- /test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademakov/RNG/HEAD/test.cc --------------------------------------------------------------------------------