Files
apfstests/include/random_range.h
T
Dave Chinner fa993e5130 include/: spdx license conversion
Mostly scripted like all the others, manually added tags to
Makefile and build/config input files.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
2018-06-22 10:37:57 +08:00

20 lines
646 B
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2000 Silicon Graphics, Inc.
* All Rights Reserved.
*/
#ifndef _RANDOM_RANGE_H_
#define _RANDOM_RANGE_H_
int parse_ranges ( char *, int, int, int, int (*)(), char **, char ** );
int range_min ( char *, int );
int range_max ( char *, int );
int range_mult ( char *, int );
long random_range ( int, int, int, char ** );
long random_rangel ( long, long, long, char ** );
long long random_rangell ( long long, long long, long long, char ** );
void random_range_seed( long );
long random_bit ( long );
#endif