1*49cdfc7eSAndroid Build Coastguard Worker /* SPDX-License-Identifier: GPL-2.0-or-later 2*49cdfc7eSAndroid Build Coastguard Worker * Copyright (c) Linux Test Project, 2022 3*49cdfc7eSAndroid Build Coastguard Worker */ 4*49cdfc7eSAndroid Build Coastguard Worker 5*49cdfc7eSAndroid Build Coastguard Worker #ifndef TST_RAND_DATA_H__ 6*49cdfc7eSAndroid Build Coastguard Worker #define TST_RAND_DATA_H__ 7*49cdfc7eSAndroid Build Coastguard Worker 8*49cdfc7eSAndroid Build Coastguard Worker #include <stddef.h> 9*49cdfc7eSAndroid Build Coastguard Worker 10*49cdfc7eSAndroid Build Coastguard Worker /* Includes null byte */ 11*49cdfc7eSAndroid Build Coastguard Worker extern const size_t tst_rand_data_len; 12*49cdfc7eSAndroid Build Coastguard Worker /* statically defined random data */ 13*49cdfc7eSAndroid Build Coastguard Worker extern const char *const tst_rand_data; 14*49cdfc7eSAndroid Build Coastguard Worker 15*49cdfc7eSAndroid Build Coastguard Worker #endif 16