mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
fa993e5130
Mostly scripted like all the others, manually added tags to Makefile and build/config input files. Signed-off-by: Dave Chinner <dchinner@redhat.com>
20 lines
646 B
C
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
|