Rtos API example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers test_randlib.h Source File

test_randlib.h

00001 /*
00002  * Copyright (c) 2016 ARM. All rights reserved.
00003  */
00004 #ifndef TEST_RANDLIB_H
00005 #define TEST_RANDLIB_H
00006 
00007 #ifdef __cplusplus
00008 extern "C" {
00009 #endif
00010 
00011 #include <stdbool.h>
00012 
00013 bool test_randLIB_seed_random();
00014 
00015 bool test_randLIB_get_8bit();
00016 
00017 bool test_randLIB_get_16bit();
00018 
00019 bool test_randLIB_get_32bit();
00020 
00021 bool test_randLIB_get_64bit();
00022 
00023 bool test_randLIB_get_n_bytes_random();
00024 
00025 bool test_randLIB_get_random_in_range();
00026 
00027 bool test_randLIB_randomise_base();
00028 
00029 
00030 #ifdef __cplusplus
00031 }
00032 #endif
00033 
00034 #endif // TEST_RANDLIB_H
00035