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