File indexing completed on 2024-05-19 05:01:59

0001 /*
0002     SPDX-FileCopyrightText: 2012 Joris Guisson <joris.guisson@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef UTILS_H
0008 #define UTILS_H
0009 
0010 #include <util/constants.h>
0011 
0012 /// Generate a random size between min_size and max_size
0013 bt::Uint64 RandomSize(bt::Uint64 min_size, bt::Uint64 max_size);
0014 
0015 #endif // UTILS_H