xref: /aosp_15_r20/external/ltp/include/tst_rand_data.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
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 */
11 extern const size_t tst_rand_data_len;
12 /* statically defined random data */
13 extern const char *const tst_rand_data;
14 
15 #endif
16