Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 1 | /** |
| 2 | * Copyright (C) 2013 Regents of the University of California. |
| 3 | * See COPYING for copyright and distribution information. |
| 4 | */ |
| 5 | |
| 6 | #ifndef NDN_UTIL_RANDOM_HPP |
| 7 | #define NDN_UTIL_RANDOM_HPP |
| 8 | |
| 9 | #include "../common.hpp" |
| 10 | |
| 11 | namespace ndn { |
| 12 | namespace random { |
| 13 | |
| 14 | uint32_t |
| 15 | generateWord32(); |
| 16 | |
Yingdi Yu | 17bc301 | 2014-02-10 17:37:12 -0800 | [diff] [blame] | 17 | uint64_t |
| 18 | generateWord64(); |
| 19 | |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 20 | } // namespace random |
| 21 | } // namespace ndn |
| 22 | |
| 23 | #endif // NDN_UTIL_RANDOM_HPP |