You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
315 B
16 lines
315 B
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright (c) Linux Test Project, 2022
|
|
*/
|
|
|
|
#ifndef TST_RAND_DATA_H__
|
|
#define TST_RAND_DATA_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
/* Includes null byte */
|
|
extern const size_t tst_rand_data_len;
|
|
/* statically defined random data */
|
|
extern const char *const tst_rand_data;
|
|
|
|
#endif
|